diff --git a/src/camera/CameraOGTile.tsx b/src/camera/CameraOGTile.tsx index 453308f3..c03716d5 100644 --- a/src/camera/CameraOGTile.tsx +++ b/src/camera/CameraOGTile.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Photo, PhotoDateRange } from '@/photo'; import { absolutePathForCameraImage, pathForCamera } from '@/app/paths'; import OGTile, { OGLoadingState } from '@/components/OGTile'; diff --git a/src/film/FilmOGTile.tsx b/src/film/FilmOGTile.tsx index 944e9936..67e36f33 100644 --- a/src/film/FilmOGTile.tsx +++ b/src/film/FilmOGTile.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Photo, PhotoDateRange } from '@/photo'; import { absolutePathForFilmImage, diff --git a/src/focal/FocalLengthOGTile.tsx b/src/focal/FocalLengthOGTile.tsx index 7fe2ad58..bff635eb 100644 --- a/src/focal/FocalLengthOGTile.tsx +++ b/src/focal/FocalLengthOGTile.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Photo, PhotoDateRange } from '@/photo'; import { absolutePathForFocalLengthImage, diff --git a/src/photo/PhotoOGTile.tsx b/src/photo/PhotoOGTile.tsx index 3bc60dfa..76c1ce46 100644 --- a/src/photo/PhotoOGTile.tsx +++ b/src/photo/PhotoOGTile.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Photo, descriptionForPhoto, diff --git a/src/tag/TagOGTile.tsx b/src/tag/TagOGTile.tsx index 2f1a3dda..c34fba37 100644 --- a/src/tag/TagOGTile.tsx +++ b/src/tag/TagOGTile.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Photo, PhotoDateRange } from '@/photo'; import { absolutePathForTagImage, pathForTag } from '@/app/paths'; import OGTile, { OGLoadingState } from '@/components/OGTile';