Skip to content

Commit

Permalink
Merge pull request #26598 from napster125/napster125/issue-26586
Browse files Browse the repository at this point in the history
[CP Staging] Fix amount reseting when selecting currency

(cherry picked from commit 9661a4b)
  • Loading branch information
mountiny authored and OSBotify committed Sep 3, 2023
1 parent 782eb67 commit 45ca232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/iou/IOUCurrencySelection.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function IOUCurrencySelection(props) {
if (_.isEmpty(backTo) || props.navigation.getState().routes.length === 1) {
Navigation.goBack();
} else {
Navigation.goBack(`${props.route.params.backTo}?currency=${option.currencyCode}`, true);
Navigation.navigate(`${props.route.params.backTo}?currency=${option.currencyCode}`);
}
},
[props.route, props.navigation],
Expand Down

0 comments on commit 45ca232

Please sign in to comment.