Selaa lähdekoodia

refactor: Remove spreadsheet export format handling in Google Drive picker

Taylor Wilsdon (aider) 4 kuukautta sitten
vanhempi
commit
81bb816881
1 muutettua tiedostoa jossa 0 lisäystä ja 2 poistoa
  1. 0 2
      src/lib/utils/google-drive-picker.ts

+ 0 - 2
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 {