Commit 80e6b9b1 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

eahtgwrehtr

parent f91f348e
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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);
  };