Skip to content

Commit

Permalink
Fix issue: Expense - Amount editor RHP slides in from the right inste…
Browse files Browse the repository at this point in the history
…ad of left after changing currency
  • Loading branch information
WojtekBoman committed Jan 23, 2025
1 parent 1437b88 commit ecba313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/iou/request/step/IOURequestStepCurrency.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function IOURequestStepCurrency({
// to the confirmation page
if (pageIndex === CONST.IOU.PAGE_INDEX.CONFIRM) {
if (selectedCurrencyValue) {
Navigation.navigate(appendParam(backTo as string, 'currency', selectedCurrencyValue));
Navigation.goBack(appendParam(backTo as string, 'currency', selectedCurrencyValue), {compareParams: false});
} else {
Navigation.goBack(backTo);
}
Expand Down

0 comments on commit ecba313

Please sign in to comment.