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
d3d8157f83
commit
acc5d147f2
1 changed files with 3 additions and 3 deletions
|
@ -1876,9 +1876,9 @@ export function apply(configObj: MonkeyTypes.Config | null | "null"): void {
|
|||
$("#ad_about1").remove();
|
||||
$("#ad_about2").remove();
|
||||
}
|
||||
} catch (e: any) {
|
||||
Notifications.add("Error initialising ads: " + e.message);
|
||||
console.log("error initialising ads " + e.message);
|
||||
} catch (e) {
|
||||
Notifications.add("Error initialising ads: " + (e as Error).message);
|
||||
console.log("error initialising ads " + (e as Error).message);
|
||||
$(".footerads").remove();
|
||||
$("#ad_left").remove();
|
||||
$("#ad_right").remove();
|
||||
|
|
Loading…
Reference in a new issue