From 8f82ad66df8a21c9a0905dcbf882dd87e892ac8f Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 15 Jan 2026 04:34:59 +0200 Subject: [PATCH] make button blue when tooltip is visible (#9668) --- .../activity-notifications/SubscribeProfileButton.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/activity-notifications/SubscribeProfileButton.tsx b/src/components/activity-notifications/SubscribeProfileButton.tsx index d42d438d4b..7995913ec7 100644 --- a/src/components/activity-notifications/SubscribeProfileButton.tsx +++ b/src/components/activity-notifications/SubscribeProfileButton.tsx @@ -68,10 +68,12 @@ export function SubscribeProfileButton({ const Icon = isSubscribed ? BellRingingIcon : BellPlusIcon + const tooltipVisible = showTooltip && !disableHint + return ( <> @@ -79,7 +81,7 @@ export function SubscribeProfileButton({ accessibilityRole="button" testID="dmBtn" size="small" - color="secondary" + color={tooltipVisible ? 'primary_subtle' : 'secondary'} shape="round" label={_(msg`Get notified when ${name} posts`)} onPress={wrappedOnPress}>