From c03ad8c2217defe19f4a1a9434a373848a19cbdb Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:04:25 +0100 Subject: [PATCH] fix(content): update `type` field and conditional rendering for content handling - Changed `type` field values from `image | video` to `meme | gif`. - Updated conditional rendering in `content-card` component to match new `type` values. --- frontend/src/components/content-card.tsx | 2 +- frontend/src/types/content.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/content-card.tsx b/frontend/src/components/content-card.tsx index 1971d08..d0f61d3 100644 --- a/frontend/src/components/content-card.tsx +++ b/frontend/src/components/content-card.tsx @@ -95,7 +95,7 @@ export function ContentCard({ content }: ContentCardProps) { - {content.type === "image" ? ( + {content.type === "meme" ? (