From 09f78df1daa02e4172a9319adfc3cd6ee4e294f7 Mon Sep 17 00:00:00 2001 From: Derek Slenk Date: Mon, 30 Jun 2025 10:29:25 -0400 Subject: [PATCH] Fix ESLint error: remove unused CardDescription import - Remove CardDescription from imports in long-story page - Component was imported but never used, causing linting error - All ESLint warnings now resolved --- src/app/long-story/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/long-story/page.tsx b/src/app/long-story/page.tsx index e3195cd..ae87d10 100644 --- a/src/app/long-story/page.tsx +++ b/src/app/long-story/page.tsx @@ -4,7 +4,6 @@ import { Button } from '@/components/ui/button'; import { Card, CardContent, - CardDescription, CardHeader, } from '@/components/ui/card'; import Link from 'next/link';