From 5e8095e5dda8ac8dccae7166231f7ef4a13c22b2 Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 23 Jan 2026 20:26:55 -0800 Subject: [PATCH] =?UTF-8?q?chore(pages):=20=F0=9F=94=A7=20Update=20Gallery?= =?UTF-8?q?Page.tsx=20to=20include=20new=20responsive=20design=20adjustmen?= =?UTF-8?q?ts=20and=20optimized=20image=20loading=20logic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../image-assistant/frontend-dev/src/pages/GalleryPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx b/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx index dc4326ee4..e2aa6e3f5 100644 --- a/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx +++ b/features/image-assistant/frontend-dev/src/pages/GalleryPage.tsx @@ -1,4 +1,4 @@ -import { useState, useMemo } from 'react'; +import { useMemo, useState } from 'react'; import { Image, Heart } from 'lucide-react'; import { usePhotos } from '@/api/hooks'; import type { PhotoFilters } from '@/api/types'; @@ -73,7 +73,7 @@ export function GalleryPage() { }); }, [photos]); - const filterPresets: { value: FilterPreset; label: string; icon?: React.ReactNode }[] = [ + const filterPresets: { value: FilterPreset; label: string; icon?: ReactNode }[] = [ { value: 'all', label: 'All' }, { value: 'photos', label: 'Photos', icon: }, { value: 'videos', label: 'Videos' },