diff --git a/src/pages/Subscriptions.tsx b/src/pages/Subscriptions.tsx index 8e57a51..38aa285 100644 --- a/src/pages/Subscriptions.tsx +++ b/src/pages/Subscriptions.tsx @@ -42,19 +42,20 @@ function SubscriptionCard({ subscription: SubscriptionListItem; onClick: () => void; }) { - const { theme } = useTheme(); - const glass = getGlassColors(theme); - const haptic = useHaptic(); + const { isDark } = useTheme(); + const g = getGlassColors(isDark); + const { impact } = useHaptic(); const handleClick = () => { - haptic?.(); + impact('light'); onClick(); }; return (