Skip to content

Commit

Permalink
fix(flat-stores): fix wrong target (#2085)
Browse files Browse the repository at this point in the history
  • Loading branch information
syt-honey authored Nov 15, 2023
1 parent 5949ba6 commit e9ace80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/flat-stores/src/global-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ export class GlobalStore {
};

public deleteAccount = (): void => {
globalStore.updateUserInfo(null);
globalStore.deleteCurrentAccountFromHistory();
this.updateUserInfo(null);
this.deleteCurrentAccountFromHistory();

this.pmi = null;
this.pmiRoomList = null;
Expand Down
2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
workspaces:
packages:
- "desktop/**"
- "web/**"
- "packages/**"
Expand Down

0 comments on commit e9ace80

Please sign in to comment.