fix: session related bugs

This commit is contained in:
2024-02-08 15:37:57 -06:00
parent 9878ca7f1c
commit e105edbbee
5 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ const sessionSlice = createSlice({
setCurrentUser: (state, action: PayloadAction<SessionState['user']>) => {
return {
...state,
userPreferences: action.payload
user: action.payload
}
}
}