Skip to content

Commit

Permalink
fix: incorrectly setting style
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagobrez committed May 29, 2023
1 parent c7e295f commit 7da13b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/settings/Security/TwoFactorAuth/CodesPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function CodesPage(props) {
<View style={styles.mv3}>
<Text>{props.translate('twoFactorAuth.codesLoseAccess')}</Text>
</View>
<View style={[styles.twoFactorAuthCodesBox, {paddingHorizontal: props.isSmallScreenWidth ? styles.ph10 : styles.ph15}]}>
<View style={[styles.twoFactorAuthCodesBox, props.isSmallScreenWidth ? styles.ph10 : styles.ph15]}>
{props.account.isLoading ? (
<View style={styles.twoFactorLoadingContainer}>
<ActivityIndicator color={themeColors.spinner} />
Expand Down

0 comments on commit 7da13b0

Please sign in to comment.