diff options
author | Paul Frazee <pfrazee@gmail.com> | 2025-03-06 19:45:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-06 19:45:29 -0800 |
commit | ada2ac8b9169c5ebc4dbb1ce6a24a0accea39557 (patch) | |
tree | 180569c9d0d54f0a7b5dbd930c46c6f3c6d93e19 /src/components/forms | |
parent | fd8ac1da7df24543d175adc0d5e2b5d2cc9455af (diff) | |
download | voidsky-ada2ac8b9169c5ebc4dbb1ce6a24a0accea39557.tar.zst |
Release 1.99 prep (#7925)
* Revert #7847 (was causing layout issues) * Test fixes * Pull latest translations from crowdin * Run intl:extract:all
Diffstat (limited to 'src/components/forms')
-rw-r--r-- | src/components/forms/HostingProvider.tsx | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/src/components/forms/HostingProvider.tsx b/src/components/forms/HostingProvider.tsx index 22fbfb2aa..2fb138d00 100644 --- a/src/components/forms/HostingProvider.tsx +++ b/src/components/forms/HostingProvider.tsx @@ -41,25 +41,27 @@ export function HostingProvider({ onSelect={onSelectServiceUrl} /> {minimal ? ( - <View style={[a.flex_row, a.align_center, a.flex_wrap]}> + <View style={[a.flex_row, a.align_center, a.flex_wrap, a.gap_xs]}> <Text style={[a.text_sm, t.atoms.text_contrast_medium]}> - <Trans> - You are creating an account on{' '} - <Button - label={toNiceDomain(serviceUrl)} - accessibilityHint={_(msg`Changes hosting provider`)} - onPress={onPressSelectService} - variant="ghost" - color="secondary" - size="tiny" - style={[a.px_xs, {marginHorizontal: tokens.space.xs * -1}]}> - <ButtonText style={[a.text_sm]}> - {toNiceDomain(serviceUrl)} - </ButtonText> - <ButtonIcon icon={PencilIcon} /> - </Button> - </Trans> + <Trans>You are creating an account on</Trans> </Text> + <Button + label={toNiceDomain(serviceUrl)} + accessibilityHint={_(msg`Changes hosting provider`)} + onPress={onPressSelectService} + variant="ghost" + color="secondary" + size="tiny" + style={[ + a.px_xs, + {marginHorizontal: tokens.space.xs * -1}, + {paddingVertical: 0}, + ]}> + <ButtonText style={[a.text_sm]}> + {toNiceDomain(serviceUrl)} + </ButtonText> + <ButtonIcon icon={PencilIcon} /> + </Button> </View> ) : ( <Button |