fix: Change Google Docs export format from markdown to plain text

This commit is contained in:
Taylor Wilsdon (aider) 2024-12-16 14:09:35 -05:00
parent b46f4ff3e0
commit 4215c8ac3f

View File

@ -136,7 +136,7 @@ export const createPicker = () => {
if (mimeType.includes('google-apps')) {
// Handle Google Workspace files
if (mimeType.includes('document')) {
exportFormat = 'text/markdown';
exportFormat = 'text/plain';
} else if (mimeType.includes('spreadsheet')) {
exportFormat = 'text/csv';
} else if (mimeType.includes('presentation')) {