Add keys to sidebar

This commit is contained in:
Sam Becker 2025-03-07 20:28:37 -06:00
parent 3d461bac70
commit 021e107cad

View File

@ -50,6 +50,7 @@ export default function PhotoGridSidebar({
const tagsContent = tags.length > 0
? <HeaderList
key="tags"
title='Tags'
icon={<FaTag
size={12}
@ -92,6 +93,7 @@ export default function PhotoGridSidebar({
const camerasContent = cameras.length > 0
? <HeaderList
key="cameras"
title="Cameras"
icon={<IoMdCamera
size={13}
@ -115,6 +117,7 @@ export default function PhotoGridSidebar({
const recipesContent = recipes.length > 0
? <HeaderList
key="recipes"
title="Recipes"
icon={<TbChecklist
size={16}
@ -136,6 +139,7 @@ export default function PhotoGridSidebar({
const filmsContent = simulations.length > 0
? <HeaderList
key="films"
title="Films"
icon={<PhotoFilmSimulationIcon
className="translate-y-[0.5px]"
@ -160,12 +164,14 @@ export default function PhotoGridSidebar({
const photoStatsContent = photosCount > 0
? start
? <HeaderList
key="photo-stats"
title={photoQuantityText(photosCount, false)}
items={start === end
? [start]
: [`${end} `, start]}
/>
: <HeaderList
key="photo-stats"
items={[photoQuantityText(photosCount, false)]}
/>
: null;