We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 060cce8 commit 2debfa2Copy full SHA for 2debfa2
apps/web/src/state/wallet/updater.ts
@@ -89,12 +89,13 @@ export const WalletBalanceUpdater: React.FC = () => {
89
case 'claim-liquid-staking':
90
case 'place-limit-order':
91
case 'other': {
92
- if (chainId !== NonEVMChainId.SOLANA && !isEvmPending) {
+ if (chainId === NonEVMChainId.SOLANA) {
93
+ if (!isSolanaPending) {
94
+ refreshSolana()
95
+ }
96
+ } else if (!isEvmPending) {
97
refreshEvm()
98
}
- if (chainId === NonEVMChainId.SOLANA && !isSolanaPending) {
- refreshSolana()
- }
99
break
100
101
0 commit comments