Skip to content

Commit

Permalink
fix(purchases): remove static for logIn, logOut methods (#3709)
Browse files Browse the repository at this point in the history
  • Loading branch information
evanwork1234 committed Aug 20, 2021
1 parent 39ad4d1 commit c6b65e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/@ionic-native/plugins/purchases/index.ts
Expand Up @@ -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<LogInResult> {
logIn(appUserID: string): Promise<LogInResult> {
return;
}

Expand All @@ -440,7 +440,7 @@ export class Purchases extends IonicNativePlugin {
* @return {Promise<PurchaserInfo>} new purchaser info after resetting.
*/
@Cordova()
static logOut(): Promise<PurchaserInfo> {
logOut(): Promise<PurchaserInfo> {
return;
}

Expand Down

0 comments on commit c6b65e9

Please sign in to comment.