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 adb4fa6 commit a49e380Copy full SHA for a49e380
ui/pages/bridge/prepare/prepare-bridge-page.tsx
@@ -324,7 +324,9 @@ const PrepareBridgePage = () => {
324
// This override allows quotes to be returned when the rpcUrl is a forked network
325
// Otherwise quotes get filtered out by the bridge-api when the wallet's real
326
// balance is less than the tenderly balance
327
- insufficientBal: Boolean(providerConfig?.rpcUrl?.includes('localhost')),
+ insufficientBal: providerConfig?.rpcUrl?.includes('localhost')
328
+ ? true
329
+ : undefined,
330
slippage,
331
walletAddress: selectedAccount?.address ?? '',
332
destWalletAddress: selectedDestinationAccount?.address,
0 commit comments