refactor: remove extra S in column names

This commit is contained in:
karishmas6
2024-10-17 19:23:42 +05:30
parent 3102fb8e5b
commit 410ec57e8d

View File

@@ -231,7 +231,7 @@ router.get('/google/callback', requireSignIn, async (req, res) => {
}
robot = await robot.update({
google_sheets_email: email,
google_sheet_email: email,
google_access_token: tokens.access_token,
google_refresh_token: tokens.refresh_token,
});
@@ -254,7 +254,7 @@ router.get('/google/callback', requireSignIn, async (req, res) => {
res.json({
message: 'Google authentication successful',
google_sheet_email: robot.google_sheets_email,
google_sheet_email: robot.google_sheet_email,
jwtToken,
files
});