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;