From fa8d09e10ae39d8e7cc18e58198c88304624f340 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 20 Jul 2026 23:51:05 +0200 Subject: [PATCH] Update Signal placeholder to support both phone numbers and signal.me links --- web/components/social-links-section.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/social-links-section.tsx b/web/components/social-links-section.tsx index 09be2ddb..3467158c 100644 --- a/web/components/social-links-section.tsx +++ b/web/components/social-links-section.tsx @@ -108,7 +108,7 @@ export function SocialLinksSection({profile, setProfile}: SocialLinksSectionProp type="text" placeholder={ newLinkPlatform === 'signal' - ? t('profile.optional.signal_placeholder', 'Phone (+32777777777)') + ? t('profile.optional.signal_placeholder', 'Phone (+32777777777) or signal.me link') : SITE_ORDER.includes(newLinkPlatform as any) && newLinkPlatform != 'site' ? t('profile.optional.username_or_url', 'Username or URL') : t('profile.optional.site_url', 'Site URL')