Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoskichel committed Jul 23, 2024
1 parent f0f4838 commit b93d980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/keychain/module/keychain.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class Keychain {

#checkPrivateKeysLocked(seedIds) {
if (!seedIds?.size) {
return Object.values(this.#seedLockStatus).some((locked) => locked)
return Object.values(this.#seedLockStatus).some(Boolean)
}

const existingSeeds = Object.entries(this.#seedLockStatus)
Expand Down

0 comments on commit b93d980

Please sign in to comment.