fix: sync cloud preference storage mode (#1058)

This commit is contained in:
ZacharyZcR
2026-07-16 11:52:26 +08:00
committed by GitHub
parent 7da5c24457
commit 84d4e9522a
2 changed files with 14 additions and 2 deletions
+3 -1
View File
@@ -1683,7 +1683,9 @@ export function AppShell({
onLogout={onLogout}
onChangeServer={onChangeServer}
userPrefs={userPrefs}
onPrefsChange={setUserPrefs}
onPrefsChange={(updates) =>
setUserPrefs((current) => ({ ...current, ...updates }))
}
/>
</div>
)}