From 16ccf78c95f813747051e79ac13041e4a81879bc Mon Sep 17 00:00:00 2001 From: c0mrade Date: Wed, 25 Mar 2026 16:49:45 +0300 Subject: [PATCH] fix: show warning hint when subscription must be selected before wheel spin When user has 2+ eligible subscriptions and chooses subscription_days payment, a visible warning hint now appears explaining they need to select a subscription before spinning. --- src/pages/Wheel.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pages/Wheel.tsx b/src/pages/Wheel.tsx index 979d141..eb4b8e5 100644 --- a/src/pages/Wheel.tsx +++ b/src/pages/Wheel.tsx @@ -690,6 +690,14 @@ export default function Wheel() {

{t('wheel.errors.dailyLimitReached')}

)} + {/* Subscription selection required hint */} + {!isSpinning && needsSubscriptionPick && ( +
+

+ {t('wheel.errors.selectSubscription', 'Выберите подписку для списания дней')} +

+
+ )} {/* Inline Result Card */} {spinResult && !isSpinning && (