Skip to content

Commit

Permalink
Fix Lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
MonilBhavsar committed Nov 10, 2022
1 parent 534d276 commit 8a17d45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/ReimbursementAccount/Enable2FAPrompt.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ const Enable2FAPrompt = props => (
menuItems={[
{
title: props.translate('validationStep.secureYourAccount'),
onPress: () => Link.openOldDotLink(`settings?param={"section":"account","action":"enableTwoFactorAuth","exitTo":"${CONFIG.EXPENSIFY.NEW_EXPENSIFY_URL}${ROUTES.BANK_ACCOUNT}"}`),
onPress: () => {
Link.openOldDotLink(`settings?param={"section":"account","action":"enableTwoFactorAuth","exitTo":"${CONFIG.EXPENSIFY.NEW_EXPENSIFY_URL}${ROUTES.BANK_ACCOUNT}"}`);
},
icon: Expensicons.Shield,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
Expand Down

0 comments on commit 8a17d45

Please sign in to comment.