fix: set type as any

This commit is contained in:
karishmas6
2024-09-18 22:05:06 +05:30
parent 6f64ad17d7
commit 2ab7204e14

View File

@@ -28,7 +28,7 @@ export async function writeDataToSheet(spreadsheetId: string, range: string, dat
});
console.log(`Data written to Google Sheet: ${spreadsheetId}, Range: ${range}`);
} catch (error) {
} catch (error: any) {
console.error(`Error writing data to Google Sheet: ${error.message}`);
throw error;
}