chore: remove wrongly placed type casts

This commit is contained in:
Evan You
2021-09-02 14:18:52 -04:00
parent bacb2012ac
commit fb43aab117
2 changed files with 4 additions and 4 deletions

View File

@@ -61,7 +61,7 @@
}
window.__next__ = undefined
send_ok()
} catch (e: any) {
} catch (e) {
send_error(e.message, e.stack);
}
}
@@ -109,7 +109,7 @@
}
try {
parent.postMessage({ action: 'error', value: error }, '*');
} catch (e: any) {
} catch (e) {
parent.postMessage({ action: 'error', value: msg }, '*');
}
}
@@ -121,7 +121,7 @@
}
try {
parent.postMessage({ action: 'unhandledrejection', value: event.reason }, '*');
} catch (e: any) {
} catch (e) {
parent.postMessage({ action: 'unhandledrejection', value: event.reason.message }, '*');
}
});