Skip to content

Commit

Permalink
pump a new version
Browse files Browse the repository at this point in the history
  • Loading branch information
hicaru committed Mar 16, 2024
1 parent 986bf7c commit 4bc30c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/background/connections/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class AppConnectController {
if (jsonData[Fields.CONNECTIONS_LIST]) {
let data: AppConnection[] = JSON.parse(String(jsonData[Fields.CONNECTIONS_LIST]));

this.#identities = data;
this.#identities = data.filter((el) => el.accounts && el.domain);
}
} catch (err) {
this.#identities = [];
Expand Down

0 comments on commit 4bc30c8

Please sign in to comment.