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 5752b44 commit 5e68851Copy full SHA for 5e68851
app/components/UI/Ramp/Views/Settings/Settings.tsx
@@ -83,15 +83,15 @@ function Settings() {
83
</ListItem.Body>
84
</ListItem.Content>
85
</ListItem>
86
- {selectedRegion && (
+ {selectedRegion ? (
87
<Button
88
variant={ButtonVariants.Secondary}
89
size={ButtonSize.Lg}
90
width={ButtonWidthTypes.Full}
91
onPress={handleResetRegion}
92
label={strings('app_settings.fiat_on_ramp.reset_region')}
93
/>
94
- )}
+ ) : null}
95
</Row>
96
{isInternalBuild ? (
97
<Row>
0 commit comments