- {card.value}
- {card.valueSuffix && (
-
- {card.valueSuffix}
-
+ <>
+
+ {card.value}
+
+ {card.subtitle && (
+
+ {card.subtitle}
+
)}
-
+ >
)}
))}
diff --git a/src/pages/Dashboard.tsx b/src/pages/Dashboard.tsx
index 8806ba0..64dd386 100644
--- a/src/pages/Dashboard.tsx
+++ b/src/pages/Dashboard.tsx
@@ -191,12 +191,6 @@ export default function Dashboard() {
description: t('onboarding.steps.balance.description'),
placement: 'bottom',
},
- {
- target: 'subscription-status',
- title: t('onboarding.steps.subscription.title'),
- description: t('onboarding.steps.subscription.description'),
- placement: 'bottom',
- },
];
if (subscription?.subscription_url) {
@@ -270,7 +264,6 @@ export default function Dashboard() {