From 8e9ef164a9a3a5303f1a6830d911d7432b6b3b95 Mon Sep 17 00:00:00 2001 From: Justin Walrath Date: Mon, 12 May 2025 10:14:57 -0400 Subject: [PATCH] forget to add the use client --- src/app/[stream]/podcasts/podcastCard.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/[stream]/podcasts/podcastCard.tsx b/src/app/[stream]/podcasts/podcastCard.tsx index 922579f..8f73fdc 100644 --- a/src/app/[stream]/podcasts/podcastCard.tsx +++ b/src/app/[stream]/podcasts/podcastCard.tsx @@ -1,3 +1,5 @@ +"use client"; + import Image from 'next/image'; import { PodcastDto } from '../../../common/dtos/podcastDto'; import { useState } from 'react';