From 18338bc60fc7af7665218eb4b3e101aca98d0c6e Mon Sep 17 00:00:00 2001 From: Mahmoud Ibrahim Date: Sat, 10 Jan 2026 01:31:22 +0200 Subject: [PATCH] Style: format contact label helper --- src/web/inbound.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/web/inbound.ts b/src/web/inbound.ts index 9a1368367..8fc094515 100644 --- a/src/web/inbound.ts +++ b/src/web/inbound.ts @@ -820,8 +820,7 @@ function formatContactLabel( } function formatPhoneList(phones?: string[]): string | undefined { - const cleaned = - phones?.map((phone) => phone.trim()).filter(Boolean) ?? []; + const cleaned = phones?.map((phone) => phone.trim()).filter(Boolean) ?? []; if (cleaned.length === 0) return undefined; const [primary, ...rest] = cleaned; if (!primary) return undefined;