mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 05:35:05 +08:00
removed any
This commit is contained in:
parent
acc5d147f2
commit
c6bb3be6b9
1 changed files with 2 additions and 2 deletions
|
@ -154,10 +154,10 @@ export function verify(
|
|||
} else {
|
||||
return null;
|
||||
}
|
||||
} catch (e: any) {
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
Notifications.add(
|
||||
`Something went wrong when verifying challenge: ${e.message}`,
|
||||
`Something went wrong when verifying challenge: ${(e as Error).message}`,
|
||||
0
|
||||
);
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue