diff --git a/web/components/searches/get-notified-button.tsx b/web/components/searches/get-notified-button.tsx index a4ac9e8e..6e0cc773 100644 --- a/web/components/searches/get-notified-button.tsx +++ b/web/components/searches/get-notified-button.tsx @@ -58,6 +58,8 @@ export function GetNotifiedButton(props: { ? t('common.notified_any', 'Get notified for any new profile') : t('common.notified', 'Notify me when this search matches someone') + const buttonText = bookmarked ? label : t('common.get_notified', 'Get notified') + const handleClick = () => { if (bookmarkedSearches.length >= MAX_BOOKMARKED_SEARCHES) { toast.error( @@ -86,7 +88,7 @@ export function GetNotifiedButton(props: { aria-label={label} > - {!iconOnly && (loading ? '' : label)} + {!iconOnly && (loading ? '' : buttonText)} )