fix: Prevent constant reassignment in Google Drive file picker

This commit is contained in:
Taylor Wilsdon (aider) 2024-12-16 10:57:58 -05:00
parent f919f63d33
commit 886fb3f426

View File

@ -132,9 +132,9 @@ export const createPicker = () => {
exportFormat = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'; exportFormat = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
} else if (mimeType.includes('spreadsheet')) { } else if (mimeType.includes('spreadsheet')) {
exportFormat = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; exportFormat = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
// Create new filename with .xlsx extension for spreadsheets // Create new filename with .xlsx extension for spreadsheets if needed
const modifiedFileName = fileName.endsWith('.xlsx') ? fileName : `${fileName}.xlsx`; const finalFileName = fileName.endsWith('.xlsx') ? fileName : `${fileName}.xlsx`;
fileName = modifiedFileName; // Use finalFileName in the result object later
} else if (mimeType.includes('presentation')) { } else if (mimeType.includes('presentation')) {
exportFormat = 'application/vnd.openxmlformats-officedocument.presentationml.presentation'; exportFormat = 'application/vnd.openxmlformats-officedocument.presentationml.presentation';
} else { } else {
@ -166,7 +166,7 @@ export const createPicker = () => {
const blob = await response.blob(); const blob = await response.blob();
const result = { const result = {
id: fileId, id: fileId,
name: fileName, name: finalFileName || fileName, // Use modified filename if available
url: downloadUrl, url: downloadUrl,
blob: blob, blob: blob,
headers: { headers: {