Skip to content

Commit

Permalink
fix(ui-ux): hide balance error if there is pending txn (#642)
Browse files Browse the repository at this point in the history
fix(ui-ux): hide error if pending txn
  • Loading branch information
pierregee authored Mar 3, 2023
1 parent 4566f22 commit 7131485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/BridgeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ export default function BridgeForm({
/>
</div>
)}
{isBalanceInsufficient && (
{isBalanceInsufficient && !hasPendingTxn && (
<div className={clsx("pt-3", warningTextStyle)}>
Unable to process transaction. <div>Please try again later</div>
</div>
Expand Down

0 comments on commit 7131485

Please sign in to comment.