Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## 4.40.0 (staging)

- added: Added Infinite ramp plugin.
- fixed: `PendingTxModal` blocking swap quote flow
- fixed: Slider text font scaling on some scenes
- fixed: `TransactionDetailsScene` contact thumbnail not refreshing after editing the sender/recipient name
- fixed: `SwapInput` styling for long wallet names overflowing card
Expand Down
9 changes: 9 additions & 0 deletions src/components/scenes/SwapProcessingScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@ export const SwapProcessingScene: React.FC<Props> = (props: Props) => {
error instanceof Error &&
error.name === 'PendingFundsError'
) {
navigation.navigate('swapTab', {
screen: 'swapCreate',
params: {
fromWalletId: swapRequest.fromWallet.id,
fromTokenId: swapRequest.fromTokenId,
toWalletId: swapRequest.toWallet.id,
toTokenId: swapRequest.toTokenId
}
})
await showPendingTxModal(
swapRequest.fromWallet,
swapRequest.fromTokenId,
Expand Down
Loading