diff --git a/src/pages/Subscription.tsx b/src/pages/Subscription.tsx index 8b44082..59f2abd 100644 --- a/src/pages/Subscription.tsx +++ b/src/pages/Subscription.tsx @@ -1496,9 +1496,12 @@ export default function Subscription() { )} - {/* Additional Options (Buy Devices) */} - {false && - subscription && + {/* Additional Options (Buy Devices) — disabled on purpose. Wrapped (not + edited in place) so future upstream changes to the condition/body + below merge cleanly instead of conflicting on this toggle. */} + {false && ( + <> + {subscription && (subscription.is_active || subscription.is_limited) && !subscription.is_trial && subscription.device_limit !== 0 && ( @@ -1577,6 +1580,8 @@ export default function Subscription() { )} )} + + )} {/* Reissue Subscription — standalone block, not dependent on device_limit */} {subscription &&