Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dukenv0307 committed Nov 13, 2023
1 parent 5671583 commit 57031a6
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/pages/signin/LoginForm/BaseLoginForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,25 +303,25 @@ function LoginForm(props) {
// For more information about these differences and how to test in development mode,
// see`Expensify/App/contributingGuides/APPLE_GOOGLE_SIGNIN.md`
CONFIG.ENVIRONMENT !== CONST.ENVIRONMENT.DEV && (
<View style={[getSignInWithStyles()]}>
<Text
accessibilityElementsHidden
importantForAccessibility="no-hide-descendants"
style={[styles.textLabelSupporting, styles.textAlignCenter, styles.mb3, styles.mt2]}
>
{props.translate('common.signInWith')}
</Text>

<View style={props.isSmallScreenWidth ? styles.loginButtonRowSmallScreen : styles.loginButtonRow}>
<View onMouseDown={(e) => e.preventDefault()}>
<AppleSignIn />
</View>
<View onMouseDown={(e) => e.preventDefault()}>
<GoogleSignIn />
</View>
<View style={[getSignInWithStyles()]}>
<Text
accessibilityElementsHidden
importantForAccessibility="no-hide-descendants"
style={[styles.textLabelSupporting, styles.textAlignCenter, styles.mb3, styles.mt2]}
>
{props.translate('common.signInWith')}
</Text>

<View style={props.isSmallScreenWidth ? styles.loginButtonRowSmallScreen : styles.loginButtonRow}>
<View onMouseDown={(e) => e.preventDefault()}>
<AppleSignIn />
</View>
<View onMouseDown={(e) => e.preventDefault()}>
<GoogleSignIn />
</View>
</View>
)
</View>
)
}
</View>
)
Expand Down

0 comments on commit 57031a6

Please sign in to comment.