Browse Source

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

Taylor Wilsdon (aider) 4 months ago
parent
commit
4215c8ac3f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/utils/google-drive-picker.ts

+ 1 - 1
src/lib/utils/google-drive-picker.ts

@@ -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')) {