Skip to content

Commit

Permalink
chore: fix deleting account specs (#2378)
Browse files Browse the repository at this point in the history
* chore: fix deleting account specs

* fix: specs
  • Loading branch information
Karol Sójko committed Jul 31, 2023
1 parent 661fddf commit f18c86d
Show file tree
Hide file tree
Showing 2 changed files with 185 additions and 171 deletions.
4 changes: 3 additions & 1 deletion packages/services/src/Domain/User/UserService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,9 @@ export class UserService

await this.signOut(true)

void this.alerts.alert(InfoStrings.AccountDeleted)
if (this.alerts) {
void this.alerts.alert(InfoStrings.AccountDeleted)
}

return {
error: false,
Expand Down

0 comments on commit f18c86d

Please sign in to comment.