Skip to content

Commit ffe25fa

Browse files
committed
Default run mode to local in release builds
1 parent a869367 commit ffe25fa

File tree

1 file changed

+1
-1
lines changed
  • apps/array/src/renderer/features/task-detail/components

1 file changed

+1
-1
lines changed

apps/array/src/renderer/features/task-detail/components/TaskInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function TaskInput() {
2929
lastUsedDirectory || "",
3030
);
3131
const [runMode, setRunMode] = useState<RunMode>(
32-
import.meta.env.DEV ? lastUsedRunMode : "cloud",
32+
import.meta.env.DEV ? lastUsedRunMode : "local",
3333
);
3434
const [localWorkspaceMode, setLocalWorkspaceMode] =
3535
useState<LocalWorkspaceMode>(lastUsedLocalWorkspaceMode);

0 commit comments

Comments
 (0)