Prompt user to move to applications folder on first run

This commit is contained in:
Will Chen
2025-04-21 16:27:07 -07:00
parent d8b52a5d5f
commit 09b3bf3fee
3 changed files with 38 additions and 1 deletions

View File

@@ -91,6 +91,7 @@ export const UserSettingsSchema = z.object({
autoApproveChanges: z.boolean().optional(),
telemetryConsent: z.enum(["opted_in", "opted_out", "unset"]).optional(),
telemetryUserId: z.string().optional(),
hasRunBefore: z.boolean().optional(),
// DEPRECATED.
runtimeMode: RuntimeModeSchema.optional(),
});