From 215788f858c62d65892654aad5020c9f11030ae1 Mon Sep 17 00:00:00 2001 From: Kenan KARAER Date: Fri, 30 Jan 2026 00:24:40 +0300 Subject: [PATCH] =?UTF-8?q?hata=20d=C3=BCzeltme=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/dashboard/sms-page-client.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/dashboard/sms-page-client.tsx b/components/dashboard/sms-page-client.tsx index 0bdeb6b..c72671d 100644 --- a/components/dashboard/sms-page-client.tsx +++ b/components/dashboard/sms-page-client.tsx @@ -76,9 +76,11 @@ export default function SmsPageClient({ customers }: SmsPageProps) { try { const props = ['tel']; const opts = { multiple: true }; + // eslint-disable-next-line @typescript-eslint/no-explicit-any const contacts = await (navigator as any).contacts.select(props, opts); if (contacts && contacts.length > 0) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any const newNumbers = contacts.map((contact: any) => { const phone = contact.tel?.[0] return phone ? phone.replace(/\s/g, '') : null;