From 270cebdf590f87896e4d3663d0de04a8f16faa0e Mon Sep 17 00:00:00 2001 From: Marcel Eisentraut Date: Wed, 16 Aug 2023 11:54:42 +0200 Subject: [PATCH] refactor: remove unused code --- src/app/core/facades/account.facade.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/app/core/facades/account.facade.ts b/src/app/core/facades/account.facade.ts index 97844f1e59b..0f18e1f740d 100644 --- a/src/app/core/facades/account.facade.ts +++ b/src/app/core/facades/account.facade.ts @@ -38,7 +38,6 @@ import { import { createUser, deleteUserPaymentInstrument, - fetchAnonymousUserToken, getCustomerApprovalEmail, getLoggedInCustomer, getLoggedInUser, @@ -103,10 +102,6 @@ export class AccountFacade { options?.revokeApiToken ? this.store.dispatch(logoutUser()) : this.store.dispatch(logoutUserSuccess()); } - fetchAnonymousToken() { - this.store.dispatch(fetchAnonymousUserToken()); - } - createUser(body: CustomerRegistrationType) { this.store.dispatch(createUser(body)); }