diff options
author | Samuel Newman <mozzius@protonmail.com> | 2023-11-30 16:40:19 +0000 |
---|---|---|
committer | Samuel Newman <mozzius@protonmail.com> | 2023-11-30 16:40:19 +0000 |
commit | 5c78b2266f82881f39a7a0f05222ddb8b5ea1220 (patch) | |
tree | 7068ccc59ac16111f4823090932cf1f643825507 /src/view/screens/ProfileList.tsx | |
parent | fcd22d4ccb0718db1c9b64fccd90a8bfe3e885d4 (diff) | |
download | voidsky-5c78b2266f82881f39a7a0f05222ddb8b5ea1220.tar.zst |
add "copy link" text
Diffstat (limited to 'src/view/screens/ProfileList.tsx')
-rw-r--r-- | src/view/screens/ProfileList.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx index 9be499561..ee0cdce29 100644 --- a/src/view/screens/ProfileList.tsx +++ b/src/view/screens/ProfileList.tsx @@ -54,6 +54,7 @@ import { import {cleanError} from '#/lib/strings/errors' import {useSession} from '#/state/session' import {useComposerControls} from '#/state/shell/composer' +import {isWeb} from '#/platform/detection' const SECTION_TITLES_CURATE = ['Posts', 'About'] const SECTION_TITLES_MOD = ['About'] @@ -372,7 +373,7 @@ function Header({rkey, list}: {rkey: string; list: AppBskyGraphDefs.ListView}) { let items: DropdownItem[] = [ { testID: 'listHeaderDropdownShareBtn', - label: _(msg`Share`), + label: isWeb ? _(msg`Copy link to list`) : _(msg`Share`), onPress: onPressShare, icon: { ios: { |