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 2f4af27 commit 3990151Copy full SHA for 3990151
src/components/scenes/RampCreateScene.tsx
@@ -616,10 +616,11 @@ export const RampCreateScene: React.FC<Props> = (props: Props) => {
616
}
617
618
const fiatInputDisabled =
619
- 'max' in exchangeAmount || amountTypeSupport.onlyCrypto
+ ('max' in exchangeAmount && sortedQuotes.length > 0) ||
620
+ amountTypeSupport.onlyCrypto
621
const cryptoInputDisabled =
622
isLoadingPersistedCryptoSelection ||
- 'max' in exchangeAmount ||
623
624
amountTypeSupport.onlyFiat
625
626
// Render trade form view
0 commit comments