Skip to content

Commit

Permalink
fix(fe-qua-all): updates 20240126 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a-buono committed Jan 26, 2024
1 parent 3c7e1d2 commit e7fdea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fe-piattaforma/src/redux/features/user/userSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const userSlice = createSlice({
});
},
login: (state) => {
state.user['cfUtenteLoggato'] = state.user.codiceFiscale;
state.user['cfUtenteLoggato'] = state?.user?.codiceFiscale;
setSessionValues('user', state.user);
setSessionValues('profile', state.profilo);
if (isActiveProvisionalLogin) {
Expand Down

0 comments on commit e7fdea0

Please sign in to comment.