core: fix productId can be null

This commit is contained in:
Ammar Ahmed
2025-12-10 09:40:56 +05:00
parent 852f1ec31a
commit 7ada9cacda

View File

@@ -604,7 +604,7 @@ export type User = {
cancelURL: string | null; cancelURL: string | null;
expiry: number; expiry: number;
trialExpiry?: number; trialExpiry?: number;
productId: string; productId: string | null;
provider: SubscriptionProvider; provider: SubscriptionProvider;
start: number; start: number;
plan: SubscriptionPlan; plan: SubscriptionPlan;