Skip to content

Commit 607a0d7

Browse files
authored
fix: Default run mode to local in release builds (#219)
1 parent a869367 commit 607a0d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/array/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/array",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Array - PostHog desktop task manager",
55
"main": ".vite/build/index.js",
66
"versionHash": "dynamic",

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)