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