From 58f4643d50f3016b2d0d11bec5f9b0774b7a169f Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Sat, 23 May 2026 20:45:08 +0330 Subject: [PATCH] Fix token static --- frontend/composables/api/chat/useGetChat.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/composables/api/chat/useGetChat.ts b/frontend/composables/api/chat/useGetChat.ts index b6fb445..5cc0b83 100644 --- a/frontend/composables/api/chat/useGetChat.ts +++ b/frontend/composables/api/chat/useGetChat.ts @@ -35,9 +35,6 @@ const useGetChat = (productId: string | number, enabled: Ref) => { offset, limit, }, - headers: { - Authorization: `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoyMTY3ODE2OTAwLCJpYXQiOjE3MzU4MTY5MDAsImp0aSI6ImQwN2E2Y2Y2NzgwZjRlNTE5NWIzOGQxMTAzYzU4NDQ3IiwidXNlcl9pZCI6NX0.slwd7ZSV7nUXEuDTYwwHUOo9ekCefwEEL4kVv2vSTFo`, - }, }); return data; };