diff --git a/web/src/components/card/AnimatedEventCard.tsx b/web/src/components/card/AnimatedEventCard.tsx index 73c6af3b5..0c13b96a8 100644 --- a/web/src/components/card/AnimatedEventCard.tsx +++ b/web/src/components/card/AnimatedEventCard.tsx @@ -17,6 +17,7 @@ import { usePersistence } from "@/hooks/use-persistence"; import { Skeleton } from "../ui/skeleton"; import { Button } from "../ui/button"; import { FaCircleCheck } from "react-icons/fa6"; +import { cn } from "@/lib/utils"; type AnimatedEventCardProps = { event: ReviewSegment; @@ -145,7 +146,10 @@ export function AnimatedEventCard({ > {!alertVideos ? ( setIsLoaded(true)} @@ -200,7 +204,14 @@ export function AnimatedEventCard({ )} - {!isLoaded && } + {!isLoaded && ( + + )}