diff --git a/src/hooks/useVIP.ts b/src/hooks/useVIP.ts index 2d09fa66..fb185a58 100644 --- a/src/hooks/useVIP.ts +++ b/src/hooks/useVIP.ts @@ -39,7 +39,7 @@ const getVIPStatus = async () => { } await initRevenueCatWeb(); const customerInfo = await PurchasesWeb.getSharedInstance().getCustomerInfo(); - return customerInfo.entitlements.active[VIPId] === undefined; + return customerInfo.entitlements.active[VIPId] !== undefined; }; export const purchaseVIP = async () => {