diff --git a/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx b/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx index c051686ed7..41bb396701 100644 --- a/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx +++ b/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx @@ -30,11 +30,11 @@ import { TrashProjectButtonTooltip } from './table/cells/action-buttons/trash-pr // ── Tile zoom ───────────────────────────────────────────────────────────────── -type ZoomLevel = 0.75 | 1 | 1.35 +type ZoomLevel = 1 | 1.35 | 1.75 const ZOOM_OPTIONS: { value: ZoomLevel; label: string }[] = [ - { value: 0.75, label: 'S' }, - { value: 1, label: 'M' }, - { value: 1.35, label: 'L' }, + { value: 1, label: 'S' }, + { value: 1.35, label: 'M' }, + { value: 1.75, label: 'L' }, ] const ZOOM_STORAGE_KEY = 'lumiere-card-scale'