From 986e7d52f1b4a05680a39105b2850f8ee4a52edf Mon Sep 17 00:00:00 2001 From: Chever John Date: Tue, 7 Jul 2026 21:36:48 +0800 Subject: [PATCH] fix(washing): remove undefined useResponsive call from WashingPlanCard The useResponsive import was removed but the function call remained, causing a runtime error. The isMobile variable was unused in this component. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/components/plans/WashingPlanCard.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/plans/WashingPlanCard.tsx b/src/components/plans/WashingPlanCard.tsx index 5f95f2b..1b811ac 100644 --- a/src/components/plans/WashingPlanCard.tsx +++ b/src/components/plans/WashingPlanCard.tsx @@ -10,7 +10,6 @@ interface WashingPlanCardProps { export function WashingPlanCard({ plan }: WashingPlanCardProps) { const [expanded, setExpanded] = useState(false); - const { isMobile } = useResponsive(); const status = washingStatusMap[plan.status] || washingStatusMap.pending; const progress = plan.status === 'completed' ? 100