diff --git a/src/client/Main.ts b/src/client/Main.ts index e6297b63c..3e49f0c12 100644 --- a/src/client/Main.ts +++ b/src/client/Main.ts @@ -1,4 +1,3 @@ -import version from "../../resources/version.txt"; import { UserMeResponse } from "../core/ApiSchemas"; import { EventBus } from "../core/EventBus"; import { GameRecord, GameStartInfo, ID } from "../core/Schemas"; @@ -106,14 +105,6 @@ class Client { constructor() {} initialize(): void { - const gameVersion = document.getElementById( - "game-version", - ) as HTMLDivElement; - if (!gameVersion) { - console.warn("Game version element not found"); - } - gameVersion.innerText = version; - const newsModal = document.querySelector("news-modal") as NewsModal; if (!newsModal || !(newsModal instanceof NewsModal)) { console.warn("News modal element not found"); diff --git a/src/client/index.html b/src/client/index.html index ae46d19e8..eb5484fef 100644 --- a/src/client/index.html +++ b/src/client/index.html @@ -197,7 +197,7 @@