diff --git a/src/components/setting-verge.tsx b/src/components/setting-verge.tsx index 496b99b..3a15bf9 100644 --- a/src/components/setting-verge.tsx +++ b/src/components/setting-verge.tsx @@ -26,7 +26,7 @@ const SettingVerge = ({ onError }: Props) => { const { theme_mode: mode = "light", theme_blur: blur = false, - enable_self_startup: startup = false, + enable_auto_launch: startup = false, enable_system_proxy: proxy = false, } = vergeConfig ?? {}; @@ -72,14 +72,14 @@ const SettingVerge = ({ onError }: Props) => { - + onChangeData({ enable_self_startup: e })} - onGuard={(e) => patchVergeConfig({ enable_self_startup: e })} + onChange={(e) => onChangeData({ enable_auto_launch: e })} + onGuard={(e) => patchVergeConfig({ enable_auto_launch: e })} > diff --git a/src/services/types.ts b/src/services/types.ts index cc0e13b..e45ee00 100644 --- a/src/services/types.ts +++ b/src/services/types.ts @@ -111,7 +111,7 @@ export namespace CmdType { export interface VergeConfig { theme_mode?: "light" | "dark"; theme_blur?: boolean; - enable_self_startup?: boolean; + enable_auto_launch?: boolean; enable_system_proxy?: boolean; } }