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/screens/Settings/ExportCarDialog.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/screens/Settings/ExportCarDialog.tsx')
-rw-r--r-- | src/view/screens/Settings/ExportCarDialog.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/view/screens/Settings/ExportCarDialog.tsx b/src/view/screens/Settings/ExportCarDialog.tsx index ba8fad2df..3ec37e85e 100644 --- a/src/view/screens/Settings/ExportCarDialog.tsx +++ b/src/view/screens/Settings/ExportCarDialog.tsx @@ -1,14 +1,14 @@ 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 {getAgent, useSession} from '#/state/session' 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 {InlineLink, Link} from '#/components/Link' -import {getAgent, useSession} from '#/state/session' +import * as Dialog from '#/components/Dialog' +import {InlineLinkText, Link} from '#/components/Link' +import {P, Text} from '#/components/Typography' export function ExportCarDialog({ control, @@ -75,11 +75,11 @@ export function ExportCarDialog({ <Trans> This feature is in beta. You can read more about repository exports in{' '} - <InlineLink + <InlineLinkText to="https://docs.bsky.app/blog/repo-export" style={[a.text_sm]}> this blogpost - </InlineLink> + </InlineLinkText> . </Trans> </P> |