Drag and drop selected by default

This commit is contained in:
Reece 2025-10-01 17:09:57 +01:00
parent 700b341faa
commit ff4700b1d5

View File

@ -172,8 +172,8 @@ const FileEditor = ({
// Process all extracted files
if (allExtractedFiles.length > 0) {
// Add files to context (they will be processed automatically)
await addFiles(allExtractedFiles);
// Add files to context and select them automatically
await addFiles(allExtractedFiles, { selectFiles: true });
showStatus(`Added ${allExtractedFiles.length} files`, 'success');
}
} catch (err) {