Show bulk import toast when panel is folded

Previously the toast only showed when the panel was not in bulk-import
mode. Now it also shows when the panel is folded, since the user can't
see the in-panel progress indicator.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lukas
2026-03-14 11:57:34 +01:00
parent 61bc274715
commit aa806d4fb9

View File

@@ -371,7 +371,7 @@ export function App() {
<BulkImportToasts <BulkImportToasts
state={bulkImport.state} state={bulkImport.state}
visible={!sidePanel.bulkImportMode} visible={!sidePanel.bulkImportMode || sidePanel.isRightPanelFolded}
onReset={bulkImport.reset} onReset={bulkImport.reset}
/> />