Skip to content

Commit

Permalink
enable email password auth for all (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-orion authored Mar 28, 2023
1 parent d5eb88d commit 135c0c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/screens/AuthFlow/SignIn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@ import {SignInEmailLinkForm} from '@screens/AuthFlow/SignIn/forms/SignInEmailLin
import {SignInEmailPasswordForm} from '@screens/AuthFlow/SignIn/forms/SignInEmailPasswordForm';
import {SignInPhoneForm} from '@screens/AuthFlow/SignIn/forms/SignInPhoneForm';
import {useSocialAuth} from '@screens/AuthFlow/SignIn/hooks/useSocialAuth';
import {deviceMainLocale} from '@translations/i18n';
import React, {useMemo, useState} from 'react';
import {ScrollView, StyleSheet, View} from 'react-native';
import {rem} from 'rn-units';

const isEmailPasswordSignIn = deviceMainLocale.languageCode === 'zh';
const isEmailPasswordSignIn = true; // deviceMainLocale.languageCode === 'zh';

export const SignIn = () => {
useFocusStatusBar({style: 'light-content'});
Expand Down

0 comments on commit 135c0c3

Please sign in to comment.