Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Fix a lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Aug 31, 2021
1 parent 55ce158 commit 08a6331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic/safe/store/actions/createTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type ErrorEventHandler = () => void

export const METAMASK_REJECT_CONFIRM_TX_ERROR_CODE = 4001

export const isKeystoneError = (err: Error) => {
export const isKeystoneError = (err: Error): boolean => {
return err.message.startsWith('#ktek_error')
}

Expand Down

0 comments on commit 08a6331

Please sign in to comment.