diff --git a/src/components/FolderPickerModal.tsx b/src/components/FolderPickerModal.tsx index 4b46aaf..a437c97 100644 --- a/src/components/FolderPickerModal.tsx +++ b/src/components/FolderPickerModal.tsx @@ -41,7 +41,7 @@ function buildBreadcrumbs(path: string | null): { label: string; path: string | const windowsDrive = normalized.match(/^[A-Za-z]:/); if (windowsDrive) { - const drive = windowsDrive[0] + "\\"; + const drive = windowsDrive[0]; const rest = normalized.slice(2).split(/[\\/]+/).filter(Boolean); let current = drive; return [ diff --git a/src/components/Toolbar.tsx b/src/components/Toolbar.tsx index 42dd5aa..16b2d0b 100644 --- a/src/components/Toolbar.tsx +++ b/src/components/Toolbar.tsx @@ -187,7 +187,6 @@ export function Toolbar() { const selectedFolder = folders.find((folder) => folder.id === selectedFolderId); const title = collectionTitle ?? (selectedFolder ? selectedFolder.name : "All Media"); - const tileSize = tileSizeForZoom(zoomPreset); const sortOptions = getSortOptions(mediaFilter); const hasActiveSearch = search.trim().length > 0; const parsedSearch = parseSearchValue(composeSearchValue(searchCommand, searchQuery)); @@ -439,22 +438,28 @@ export function Toolbar() { {/* Zoom */}