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 },