From dfbc5470e64ce5a1b8d3fd1e249d7ea612c0c278 Mon Sep 17 00:00:00 2001 From: Naveen Pandey Date: Fri, 20 Sep 2024 17:08:09 +0530 Subject: [PATCH] chore: remove todo --- src/api/integration.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/integration.ts b/src/api/integration.ts index 0e6e1af6..2804508b 100644 --- a/src/api/integration.ts +++ b/src/api/integration.ts @@ -1,6 +1,5 @@ import { default as axios } from "axios"; -// todo: proper typescript types for params export const handleUploadCredentials = async (fileName: string, credentials: any, spreadsheetId: string, range: string): Promise => { try { const response = await axios.post('http://localhost:8080/integration/upload-credentials', { fileName, credentials: JSON.parse(credentials), spreadsheetId, range });