fix(onboarding): persist theme to db on selection in StepPreferences

This commit is contained in:
Théo LAGACHE
2026-06-19 11:34:03 +02:00
parent 4dbf844272
commit 57e78e0929
@@ -51,7 +51,8 @@ export const StepPreferences = () => {
const selectTheme = async (theme: ThemeKey) => {
// Apply immediately to the UI
setTheme(theme);
//mettre à jour aussi en db!
// Persist to DB so it survives page reload
await authClient.updateUser({ theme });
await updateContext({
flowData: {
...state?.context.flowData,