Skip to content

Commit

Permalink
fix(biome): fix stack error
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnk committed Apr 26, 2024
1 parent 936d42b commit 7bdf23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/key-management/src/errors/AuthenticationError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const stripStackTrace = (error: unknown) => {
if (!error) return

if (isErrorLike(error)) {
;(error as Error).stack = undefined
;(error as Error).stack = ""
}

if (isWithInnerError(error)) {
Expand Down

0 comments on commit 7bdf23c

Please sign in to comment.