Fix thumbnail for Photo

This commit is contained in:
itsfinniii
2026-04-05 22:23:31 +02:00
parent f95f792775
commit b73066352e
5 changed files with 30 additions and 10 deletions

View File

@@ -38,3 +38,13 @@ type PhotoCategory = {
category: PhotoAlbumCategory;
pageNumber: number;
}
type PhotoAlbumItem = {
id: string;
photo: PhotoProps;
text: string | null;
album: {
url: string;
title: string;
};
}

View File

@@ -5,4 +5,8 @@ type PhotoPage = {
id: string;
photo: PhotoProps;
text: string | null;
album: {
url: string;
title: string;
};
}