From 9eda377ec0889c1c864e9024382227264a0633de Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 17 Oct 2024 14:21:36 +0530 Subject: [PATCH] chore: lint --- 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 5145fe2b..644642e0 100644 --- a/src/components/molecules/IntegrationSettings.tsx +++ b/src/components/molecules/IntegrationSettings.tsx @@ -41,7 +41,7 @@ export const IntegrationSettingsModal = ({ isOpen, handleStart, handleClose }: I try { const response = await axios.get(`http://localhost:8080/auth/google/callback`); const { google_sheet_email, files } = response.data; - setUserInfo({ email:google_sheet_email }); + setUserInfo({ email: google_sheet_email }); setSpreadsheets(files); setIsAuthenticated(true); } catch (error) {