Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisl committed Dec 8, 2023
1 parent dfa6d3b commit 505f448
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/pages/ReimbursementAccount/BankAccountStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ import compose from '@libs/compose';
import getPlaidDesktopMessage from '@libs/getPlaidDesktopMessage';
import useTheme from '@styles/themes/useTheme';
import useThemeStyles from '@styles/useThemeStyles';
import variables from '@styles/variables';
import * as BankAccounts from '@userActions/BankAccounts';
import * as Link from '@userActions/Link';
import * as Session from '@userActions/Session';
import CONFIG from '@src/CONFIG';
import CONST from '@src/CONST';
import ONYXKEYS from '@src/ONYXKEYS';
import ROUTES from '@src/ROUTES';
import variables from '@styles/variables';
import * as Session from '@userActions/Session';
import BankAccountManualStep from './BankAccountManualStep';
import BankAccountPlaidStep from './BankAccountPlaidStep';
import StepPropTypes from './StepPropTypes';
Expand Down Expand Up @@ -166,7 +166,12 @@ function BankAccountStep(props) {

<Text style={[styles.mutedTextLabel, styles.ml4, styles.flex1]}>
{props.translate('bankAccount.validateAccountError.phrase1')}
<TextLink fontSize={variables.fontSizeLabel} onPress={Session.signOutAndRedirectToSignIn}>{props.translate('bankAccount.validateAccountError.phrase2')}</TextLink>
<TextLink
fontSize={variables.fontSizeLabel}
onPress={Session.signOutAndRedirectToSignIn}
>
{props.translate('bankAccount.validateAccountError.phrase2')}
</TextLink>
.
</Text>
</View>
Expand Down

0 comments on commit 505f448

Please sign in to comment.