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.
This commit is contained in:
gpt-engineer-app[bot] 2025-06-21 12:05:20 +00:00
parent 0208b13700
commit 0ab8fa63d1

View File

@ -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';