Loading mobile/src/auth/contexts/auth_context.tsx +2 −4 Original line number Diff line number Diff line Loading @@ -79,10 +79,8 @@ export const AuthContextProvider = ({ children }: AuthContextProviderProps) => { const parsedUserPreferences = JSON.parse( userPreferences ) as UserPreferences; await AsyncStorage.setItem( sskey, JSON.stringify({ ...parsedUserPreferences, isVerifiedEmail: true }) ); parsedUserPreferences.isVerifiedEmail = true; await AsyncStorage.setItem(sskey, JSON.stringify(parsedUserPreferences)); setIsVerified(true); }; Loading Loading
mobile/src/auth/contexts/auth_context.tsx +2 −4 Original line number Diff line number Diff line Loading @@ -79,10 +79,8 @@ export const AuthContextProvider = ({ children }: AuthContextProviderProps) => { const parsedUserPreferences = JSON.parse( userPreferences ) as UserPreferences; await AsyncStorage.setItem( sskey, JSON.stringify({ ...parsedUserPreferences, isVerifiedEmail: true }) ); parsedUserPreferences.isVerifiedEmail = true; await AsyncStorage.setItem(sskey, JSON.stringify(parsedUserPreferences)); setIsVerified(true); }; Loading