diff options
author | Hailey <me@haileyok.com> | 2024-05-16 08:37:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 08:37:04 -0700 |
commit | 400c269330e15921de3f01fb69f36e036ae92d51 (patch) | |
tree | 4cf84721519175822ce916ec3918414728828e7a /src/view/com/util/UserAvatar.tsx | |
parent | b635d000b51a440b3c0eb8a2c0c01cf8e8c54ed3 (diff) | |
download | voidsky-400c269330e15921de3f01fb69f36e036ae92d51.tar.zst |
[🐴] Copy tweaks (#4042)
* `notifications` -> `conversation` * `users` -> `people` * `other participants` -> `the other participant` * rename
Diffstat (limited to 'src/view/com/util/UserAvatar.tsx')
-rw-r--r-- | src/view/com/util/UserAvatar.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/util/UserAvatar.tsx b/src/view/com/util/UserAvatar.tsx index 19e2cf880..f23f4f7a5 100644 --- a/src/view/com/util/UserAvatar.tsx +++ b/src/view/com/util/UserAvatar.tsx @@ -51,7 +51,7 @@ interface EditableUserAvatarProps extends BaseUserAvatarProps { interface PreviewableUserAvatarProps extends BaseUserAvatarProps { moderation?: ModerationUI profile: AppBskyActorDefs.ProfileViewBasic - disable?: boolean + disableHoverCard?: boolean onBeforePress?: () => void } @@ -384,7 +384,7 @@ export {EditableUserAvatar} let PreviewableUserAvatar = ({ moderation, profile, - disable, + disableHoverCard, onBeforePress, ...rest }: PreviewableUserAvatarProps): React.ReactNode => { @@ -397,7 +397,7 @@ let PreviewableUserAvatar = ({ }, [profile, queryClient, onBeforePress]) return ( - <ProfileHoverCard did={profile.did} disable={disable}> + <ProfileHoverCard did={profile.did} disable={disableHoverCard}> <Link label={_(msg`See profile`)} to={makeProfileLink({ |