diff --git a/front/packages/models/src/resources/show.ts b/front/packages/models/src/resources/show.ts
index 4c0cbe979..ee8489160 100644
--- a/front/packages/models/src/resources/show.ts
+++ b/front/packages/models/src/resources/show.ts
@@ -35,7 +35,8 @@ export enum Status {
Planned = "Planned",
}
-export const ShowP = withImages(ResourceP.extend({
+export const ShowP = withImages(
+ ResourceP.extend({
/**
* The title of this show.
*/
@@ -84,7 +85,9 @@ export const ShowP = withImages(ResourceP.extend({
* The list of seasons of this show.
*/
seasons: z.array(SeasonP).optional(),
- }), "shows")
+ }),
+ "shows",
+)
.transform((x) => {
if (!x.thumbnail && x.poster) {
x.thumbnail = { ...x.poster };
diff --git a/front/packages/ui/src/details/season.tsx b/front/packages/ui/src/details/season.tsx
index 7e0d276d5..3ee7ba91c 100644
--- a/front/packages/ui/src/details/season.tsx
+++ b/front/packages/ui/src/details/season.tsx
@@ -72,13 +72,15 @@ export const SeasonHeader = ({
{isLoading ?