Removed unused import and parameter from photo gallery component.

This commit is contained in:
rocketdebris 2026-05-20 20:43:14 -04:00
parent 98583c5e47
commit 354175ff2f

View file

@ -2,10 +2,9 @@ import { useLoaderData } from 'react-router';
import { useState } from 'react';
import { Header } from './header';
import { Footer } from './footer';
import { ControlBar } from './control_bar';
import { PhotoCard } from './photo_card';
export function PhotoGallery({ numColumns }) {
export function PhotoGallery() {
const imageData = useLoaderData();
const [isGallery, setGallery] = useState(false);
return (