Skip to content

Commit 0fa18d1

Browse files
committed
fix: remove paid sub check and completely rely on live edit entitlements
1 parent 3a1c0f9 commit 0fa18d1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/LiveDevelopment/main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,9 +346,8 @@ define(function main(require, exports, module) {
346346

347347
try {
348348
const entitlement = await KernalModeTrust.EntitlementsManager.getLiveEditEntitlement();
349-
const isPaidSub = await KernalModeTrust.EntitlementsManager.isPaidSubscriber();
350349

351-
isProUser = entitlement.activated || isPaidSub;
350+
isProUser = entitlement.activated;
352351
isFreeTrialUser = await KernalModeTrust.EntitlementsManager.isInProTrial();
353352

354353
config.isProUser = isProUser;

0 commit comments

Comments
 (0)