From 300222a0718e03c63ce412cf5e8d0f77ce74860f Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 11 Dec 2025 22:41:34 +0200 Subject: [PATCH] national format --- src/components/contacts/phone-number.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/contacts/phone-number.ts b/src/components/contacts/phone-number.ts index d550984ae7..9510a614c0 100644 --- a/src/components/contacts/phone-number.ts +++ b/src/components/contacts/phone-number.ts @@ -97,7 +97,7 @@ export function constructFullPhoneNumber( */ export function prettyPhoneNumber(phoneNumber: string) { const result = parsePhoneNumber(phoneNumber) - return result.formatInternational() + return result.formatNational() } /**