diff options
author | dan <dan.abramov@gmail.com> | 2024-04-04 21:34:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 21:34:55 +0100 |
commit | 3915bb43169ae501d81571c5e1efa12cf0e24dbb (patch) | |
tree | be2f7bed7c842be71922f2793b4b4a20cd6fbc24 /src/view/com/auth/SplashScreen.web.tsx | |
parent | c190fd58ec82b36ea8124902cad34acc4a5b5ac0 (diff) | |
download | voidsky-3915bb43169ae501d81571c5e1efa12cf0e24dbb.tar.zst |
Enforce Text suffix for Text-rendering components (#3407)
* Rm unused * Add Text suffix to Title/Description * Add Text suffix to text components * Add Text suffix to props * Validate Text components returns
Diffstat (limited to 'src/view/com/auth/SplashScreen.web.tsx')
-rw-r--r-- | src/view/com/auth/SplashScreen.web.tsx | 14 |
1 files changed, 7 insertions, 7 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} /> |