From 0ab8fa63d1bb06c273a12b014e0fd56758fe4b98 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 21 Jun 2025 12:05:20 +0000 Subject: [PATCH] Fix: Resolve missing exports in whatsAppService Removed `SERVER_URL` and `API_KEY` imports from `src/services/whatsAppService.ts` as they are no longer exported by `src/services/whatsApp/config.ts` due to the security refactor. --- src/services/whatsAppService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/whatsAppService.ts b/src/services/whatsAppService.ts index cf2cdf3..70edfb4 100644 --- a/src/services/whatsAppService.ts +++ b/src/services/whatsAppService.ts @@ -7,5 +7,5 @@ export * from './whatsApp/instanceActions'; export * from './whatsApp/localStorage'; export * from './whatsApp/webhookService'; -// Export config values if needed by other parts of the app -export { SERVER_URL, API_KEY, STORAGE_KEY } from './whatsApp/config'; +// Export only the storage key that still exists in config +export { STORAGE_KEY } from './whatsApp/config';