From beaf83e504ecd9de5dc2eefbcb0f14095dae2a92 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 17 Oct 2024 16:15:58 +0530 Subject: [PATCH] fix: proper route --- src/components/molecules/IntegrationSettings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/IntegrationSettings.tsx b/src/components/molecules/IntegrationSettings.tsx index f8107d27..0463f149 100644 --- a/src/components/molecules/IntegrationSettings.tsx +++ b/src/components/molecules/IntegrationSettings.tsx @@ -51,7 +51,7 @@ export const IntegrationSettingsModal = ({ isOpen, handleStart, handleClose }: I const fetchSpreadsheetFiles = async () => { try { - const response = await axios.get(`http://localhost:8080/gsheets/files?robotId=${recordingId}`, { + const response = await axios.get(`http://localhost:8080/auth/gsheets/files?robotId=${recordingId}`, { withCredentials: true, }); setSpreadsheets(response.data);