diff options
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/auth/SplashScreen.web.tsx | 14 | ||||
-rw-r--r-- | src/view/com/auth/server-input/index.tsx | 16 |
2 files changed, 15 insertions, 15 deletions
diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index cdb72cc04..7a2ee16cf 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -14,7 +14,7 @@ import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron' -import {InlineLink} from '#/components/Link' +import {InlineLinkText} from '#/components/Link' import {Text} from '#/components/Typography' import {CenteredView} from '../util/Views' @@ -162,15 +162,15 @@ function Footer() { a.flex_1, t.atoms.border_contrast_medium, ]}> - <InlineLink to="https://bsky.social"> + <InlineLinkText to="https://bsky.social"> <Trans>Business</Trans> - </InlineLink> - <InlineLink to="https://bsky.social/about/blog"> + </InlineLinkText> + <InlineLinkText to="https://bsky.social/about/blog"> <Trans>Blog</Trans> - </InlineLink> - <InlineLink to="https://bsky.social/about/join"> + </InlineLinkText> + <InlineLinkText to="https://bsky.social/about/join"> <Trans>Jobs</Trans> - </InlineLink> + </InlineLinkText> <View style={a.flex_1} /> diff --git a/src/view/com/auth/server-input/index.tsx b/src/view/com/auth/server-input/index.tsx index b26ac1dcb..8aa23c263 100644 --- a/src/view/com/auth/server-input/index.tsx +++ b/src/view/com/auth/server-input/index.tsx @@ -1,17 +1,17 @@ import React from 'react' import {View} from 'react-native' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {Trans, msg} from '@lingui/macro' -import {BSKY_SERVICE} from 'lib/constants' -import * as persisted from '#/state/persisted' +import * as persisted from '#/state/persisted' +import {BSKY_SERVICE} from 'lib/constants' import {atoms as a, useBreakpoints, useTheme} from '#/alf' -import * as Dialog from '#/components/Dialog' -import {Text, P} from '#/components/Typography' import {Button, ButtonText} from '#/components/Button' -import * as ToggleButton from '#/components/forms/ToggleButton' +import * as Dialog from '#/components/Dialog' import * as TextField from '#/components/forms/TextField' +import * as ToggleButton from '#/components/forms/ToggleButton' import {Globe_Stroke2_Corner0_Rounded as Globe} from '#/components/icons/Globe' +import {P, Text} from '#/components/Typography' export function ServerInputDialog({ control, @@ -106,9 +106,9 @@ export function ServerInputDialog({ a.px_md, a.py_md, ]}> - <TextField.Label nativeID="address-input-label"> + <TextField.LabelText nativeID="address-input-label"> <Trans>Server address</Trans> - </TextField.Label> + </TextField.LabelText> <TextField.Root> <TextField.Icon icon={Globe} /> <Dialog.Input |