From c6b65e9715a9086dfb4325957457c1fe3be217f4 Mon Sep 17 00:00:00 2001 From: Evan Harvey Date: Sat, 21 Aug 2021 03:57:03 +0900 Subject: [PATCH] fix(purchases): remove static for logIn, logOut methods (#3709) --- src/@ionic-native/plugins/purchases/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/purchases/index.ts b/src/@ionic-native/plugins/purchases/index.ts index 07dfc528b..e53d1bbc7 100644 --- a/src/@ionic-native/plugins/purchases/index.ts +++ b/src/@ionic-native/plugins/purchases/index.ts @@ -430,7 +430,7 @@ export class Purchases extends IonicNativePlugin { * whether the user has just been created for the first time in the RevenueCat backend. */ @Cordova() - static logIn(appUserID: string): Promise { + logIn(appUserID: string): Promise { return; } @@ -440,7 +440,7 @@ export class Purchases extends IonicNativePlugin { * @return {Promise} new purchaser info after resetting. */ @Cordova() - static logOut(): Promise { + logOut(): Promise { return; }