diff --git a/client/pages/SubscriptionsPage.jsx b/client/pages/SubscriptionsPage.jsx index 274c712..c01e613 100644 --- a/client/pages/SubscriptionsPage.jsx +++ b/client/pages/SubscriptionsPage.jsx @@ -35,6 +35,10 @@ const TYPE_LABELS = { gaming: 'Gaming', utilities: 'Utilities', insurance: 'Insurance', + food: 'Food', + education: 'Education', + shopping: 'Shopping', + security: 'Security', other: 'Other', }; @@ -45,12 +49,12 @@ function cycleLabel(item) { function StatCard({ icon: Icon, label, value, hint }) { return ( -
+
- {label} + {label}
-

{value}

+

{value}

{hint &&

{hint}

}
); @@ -59,7 +63,8 @@ function StatCard({ icon: Icon, label, value, hint }) { function SubscriptionRow({ item, onEdit, onToggle }) { return (
@@ -67,7 +72,7 @@ function SubscriptionRow({ item, onEdit, onToggle }) { @@ -88,7 +93,7 @@ function SubscriptionRow({ item, onEdit, onToggle }) {
-
+

Per cycle

{fmt(item.expected_amount)}

@@ -99,15 +104,18 @@ function SubscriptionRow({ item, onEdit, onToggle }) {
-
-
-
+
- + Tracked Subscriptions Subscriptions are bills with recurring-service metadata. @@ -446,7 +454,7 @@ export default function SubscriptionsPage() { - +
SimpleFIN Recommendations diff --git a/package.json b/package.json index 6fa374f..9120d72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bill-tracker", - "version": "0.33.6", + "version": "0.33.7", "description": "Monthly bill tracking system", "main": "server.js", "scripts": {