diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-30 16:05:34 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-11-30 16:05:34 -0800 |
commit | 21af10bc3d7c4313868bc8deaf6ce41224e19996 (patch) | |
tree | 9e63852501bf95c2be05f81299c81c46d65a40ef /src/view/com/profile/ProfileHeader.tsx | |
parent | 93755326985dddeb34d4fc0a4a9755d3a9860be1 (diff) | |
parent | 5c78b2266f82881f39a7a0f05222ddb8b5ea1220 (diff) | |
download | voidsky-21af10bc3d7c4313868bc8deaf6ce41224e19996.tar.zst |
Merge branch 'copy-link' of https://github.com/mozzius/bluesky-official-app into mozzius-copy-link
Diffstat (limited to 'src/view/com/profile/ProfileHeader.tsx')
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index ca71e8ebf..c1de10aa5 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -16,7 +16,7 @@ import { import {Trans, msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {NavigationProp} from 'lib/routes/types' -import {isNative} from 'platform/detection' +import {isNative, isWeb} from 'platform/detection' import {BlurView} from '../util/BlurView' import * as Toast from '../util/Toast' import {LoadingPlaceholder} from '../util/LoadingPlaceholder' @@ -309,7 +309,7 @@ let ProfileHeaderLoaded = ({ let items: DropdownItem[] = [ { testID: 'profileHeaderDropdownShareBtn', - label: _(msg`Share`), + label: isWeb ? _(msg`Copy link to profile`) : _(msg`Share`), onPress: onPressShare, icon: { ios: { |