diff --git a/src/pages/ReimbursementAccount/NonUSD/BankInfo/BankInfo.tsx b/src/pages/ReimbursementAccount/NonUSD/BankInfo/BankInfo.tsx index 2088f05be19b..7c5d853428c5 100644 --- a/src/pages/ReimbursementAccount/NonUSD/BankInfo/BankInfo.tsx +++ b/src/pages/ReimbursementAccount/NonUSD/BankInfo/BankInfo.tsx @@ -73,13 +73,18 @@ function BankInfo({onBackButtonPress, onSubmit}: BankInfoProps) { }; const handleNextScreen = useCallback(() => { + if (screenIndex === 2) { + nextScreen(); + return; + } + if (currency !== CONST.CURRENCY.AUD) { goToTheLastStep(); return; } nextScreen(); - }, [currency, goToTheLastStep, nextScreen]); + }, [currency, goToTheLastStep, nextScreen, screenIndex]); return (