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)); }