Skip to content

Commit 487b03a

Browse files
committed
fix: wonrg file format
1 parent 07cc972 commit 487b03a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/hook.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ import type {
1616
const FIVE_SECONDS_IN_MS = 5 * 1000;
1717

1818
function isNotTimeSkewError(error: RequestError) {
19-
return !(error.message.match(
19+
return !(
20+
error.message.match(
2021
/'Expiration time' claim \('exp'\) is too far in the future/,
2122
) ||
2223
error.message.match(

0 commit comments

Comments
 (0)