From 81bb816881d65d92e11f641f499314013f4e8a20 Mon Sep 17 00:00:00 2001 From: "Taylor Wilsdon (aider)" Date: Mon, 16 Dec 2024 11:11:21 -0500 Subject: [PATCH] refactor: Remove spreadsheet export format handling in Google Drive picker --- src/lib/utils/google-drive-picker.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/utils/google-drive-picker.ts b/src/lib/utils/google-drive-picker.ts index 28228edf7..737ba9c22 100644 --- a/src/lib/utils/google-drive-picker.ts +++ b/src/lib/utils/google-drive-picker.ts @@ -130,8 +130,6 @@ export const createPicker = () => { // Handle Google Workspace files if (mimeType.includes('document')) { exportFormat = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'; - } else if (mimeType.includes('spreadsheet')) { - exportFormat = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; } else if (mimeType.includes('presentation')) { exportFormat = 'application/vnd.openxmlformats-officedocument.presentationml.presentation'; } else {