diff options
author | Eric Bailey <git@esb.lol> | 2024-03-12 20:12:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 20:12:45 -0500 |
commit | 653240bc056236489e8a7882b7b6f902ed0885c2 (patch) | |
tree | 956d729f38f23828d65db6454cf08f9067653684 /src/view/com/profile/ProfileMenu.tsx | |
parent | 7af338ed216241b4e12c3282ab5393bc20ad6bec (diff) | |
download | voidsky-653240bc056236489e8a7882b7b6f902ed0885c2.tar.zst |
Tweak prompt styles on mobile web (#3193)
Diffstat (limited to 'src/view/com/profile/ProfileMenu.tsx')
-rw-r--r-- | src/view/com/profile/ProfileMenu.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileMenu.tsx b/src/view/com/profile/ProfileMenu.tsx index ef102daf9..4153b819e 100644 --- a/src/view/com/profile/ProfileMenu.tsx +++ b/src/view/com/profile/ProfileMenu.tsx @@ -305,7 +305,7 @@ let ProfileMenu = ({ confirmButtonCta={ profile.viewer?.blocking ? _(msg`Unblock`) : _(msg`Block`) } - confirmButtonColor="negative" + confirmButtonColor={profile.viewer?.blocking ? undefined : 'negative'} /> </EventStopper> ) |