Bluesky app fork with some witchin' additions 💫

make button blue when tooltip is visible (#9668)

authored by samuel.fm and committed by

GitHub 8f82ad66 1cb362b5

+4 -2
+4 -2
src/components/activity-notifications/SubscribeProfileButton.tsx
··· 68 68 69 69 const Icon = isSubscribed ? BellRingingIcon : BellPlusIcon 70 70 71 + const tooltipVisible = showTooltip && !disableHint 72 + 71 73 return ( 72 74 <> 73 75 <Tooltip.Outer 74 - visible={showTooltip && !disableHint} 76 + visible={tooltipVisible} 75 77 onVisibleChange={onDismissTooltip} 76 78 position="bottom"> 77 79 <Tooltip.Target> ··· 79 81 accessibilityRole="button" 80 82 testID="dmBtn" 81 83 size="small" 82 - color="secondary" 84 + color={tooltipVisible ? 'primary_subtle' : 'secondary'} 83 85 shape="round" 84 86 label={_(msg`Get notified when ${name} posts`)} 85 87 onPress={wrappedOnPress}>