From d75732d8b3b2fb56998b4079e9769f6eedeef3c1 Mon Sep 17 00:00:00 2001 From: starnakin Date: Mon, 13 May 2024 13:53:14 +0200 Subject: [PATCH] fix: game history: remove delete file import --- frontend/static/js/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/static/js/index.js b/frontend/static/js/index.js index 9a62e1e..bea273b 100644 --- a/frontend/static/js/index.js +++ b/frontend/static/js/index.js @@ -20,7 +20,6 @@ import TournamentPageView from "./views/tournament/TournamentPageView.js"; import TournamentsListView from "./views/tournament/TournamentsListView.js"; import TournamentCreateView from "./views/tournament/TournamentCreateView.js"; import AuthenticationView from "./views/accounts/AuthenticationView.js"; -import GameHistoryView from "./views/GameHistoryView.js"; let client = new Client(location.origin); let lang = client.lang; @@ -79,7 +78,6 @@ const router = async(uri) => { const routes = [ { path: "/", view: HomeView}, - { path: "/profiles/:id/history", view: GameHistoryView }, { path: "/profiles/:username", view: ProfilePageView }, { path: "/tournaments/create", view: TournamentCreateView }, { path: "/tournaments/:id", view: TournamentPageView },