From 5740655e0888ee53a10d1fca55efa6687f17ba33 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Mon, 4 Mar 2024 09:17:27 -0600 Subject: [PATCH] Remove unnecessary export --- src/app/film/[simulation]/[photoId]/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/film/[simulation]/[photoId]/layout.tsx b/src/app/film/[simulation]/[photoId]/layout.tsx index 63107a59..83297f2a 100644 --- a/src/app/film/[simulation]/[photoId]/layout.tsx +++ b/src/app/film/[simulation]/[photoId]/layout.tsx @@ -15,7 +15,7 @@ import { ReactNode, cache } from 'react'; import { FilmSimulation } from '@/simulation'; import { getPhotosFilmSimulationDataCached } from '@/simulation/data'; -export const getPhotoCachedCached = +const getPhotoCachedCached = cache((photoId: string) => getPhotoCached(photoId)); interface PhotoFilmSimulationProps {