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 f4ca4a4 commit 5fc1483Copy full SHA for 5fc1483
src/components/scenes/RampCreateScene.tsx
@@ -638,10 +638,11 @@ export const RampCreateScene: React.FC<Props> = (props: Props) => {
638
}
639
640
const fiatInputDisabled =
641
- 'max' in exchangeAmount || amountTypeSupport.onlyCrypto
+ ('max' in exchangeAmount && sortedQuotes.length > 0) ||
642
+ amountTypeSupport.onlyCrypto
643
const cryptoInputDisabled =
644
isLoadingPersistedCryptoSelection ||
- 'max' in exchangeAmount ||
645
646
amountTypeSupport.onlyFiat
647
648
// Render trade form view
0 commit comments