1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

JS-3494: Remove authStore.phrase

This commit is contained in:
Andrew Simachev 2024-02-23 16:11:43 +01:00
parent 69c4a65f5b
commit c86ce22dd9
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
17 changed files with 83 additions and 178 deletions

View file

@ -141,9 +141,10 @@ function createWindow () {
};
if (Api[cmd]) {
Api[cmd].apply(Api, [ win ].concat(args || []));
return Api[cmd].apply(Api, [ win ].concat(args || []));
} else {
console.error('[Api] method not defined:', cmd);
return null;
};
});
};