Skip to content

Commit c7e8977

Browse files
chore(internal): avoid type checking errors with ts-reset
1 parent 92ee54d commit c7e8977

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ export class ValTown {
457457
loggerFor(this).info(`${responseInfo} - ${retryMessage}`);
458458

459459
const errText = await response.text().catch((err: any) => castToError(err).message);
460-
const errJSON = safeJSON(errText);
460+
const errJSON = safeJSON(errText) as any;
461461
const errMessage = errJSON ? undefined : errText;
462462

463463
loggerFor(this).debug(

0 commit comments

Comments
 (0)