Skip to content

Commit fdca2f1

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cd076e3 commit fdca2f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/errors.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ export class NotFoundError extends RemoteError {
6161
typeof key === 'string'
6262
? `NotFoundError(${key})`
6363
: typeof key === 'undefined'
64-
? 'NotFoundError'
65-
: `NotFoundError${key.join(',')}`;
64+
? 'NotFoundError'
65+
: `NotFoundError${key.join(',')}`;
6666
const keys =
6767
typeof key === 'string'
6868
? [key]
6969
: typeof key === 'undefined'
70-
? undefined
71-
: key;
70+
? undefined
71+
: key;
7272
super(name, message, keys);
7373
}
7474
}

0 commit comments

Comments
 (0)