refactor: wrap (not edit) additional-options block to avoid future merge conflicts

This commit is contained in:
chillpad
2026-07-26 17:27:20 +03:00
parent 96dd80f0ff
commit c2bfa59e2b

View File

@@ -1496,9 +1496,12 @@ export default function Subscription() {
</div>
)}
{/* 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() {
)}
</div>
)}
</>
)}
{/* Reissue Subscription — standalone block, not dependent on device_limit */}
{subscription &&