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> </div>
)} )}
{/* Additional Options (Buy Devices) */} {/* Additional Options (Buy Devices) — disabled on purpose. Wrapped (not
{false && edited in place) so future upstream changes to the condition/body
subscription && below merge cleanly instead of conflicting on this toggle. */}
{false && (
<>
{subscription &&
(subscription.is_active || subscription.is_limited) && (subscription.is_active || subscription.is_limited) &&
!subscription.is_trial && !subscription.is_trial &&
subscription.device_limit !== 0 && ( subscription.device_limit !== 0 && (
@@ -1577,6 +1580,8 @@ export default function Subscription() {
)} )}
</div> </div>
)} )}
</>
)}
{/* Reissue Subscription — standalone block, not dependent on device_limit */} {/* Reissue Subscription — standalone block, not dependent on device_limit */}
{subscription && {subscription &&