clean: fix typo

This commit is contained in:
starnakin 2024-02-13 14:02:06 +01:00
parent d843948414
commit d773859e04
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ import MatchMakingView from "./views/MatchMakingView.js";
import TournamentPageView from "./views/tournament/TournamentPageView.js";
import TournamentsView from "./views/tournament/TournamentsListView.js";
import TournamentCreateView from "./views/tournament/TournamentCreateView.js";
import AuthentifyView from "./views/accounts/AuthenficationView.js";
import AuthenticationView from "./views/accounts/AuthenticationView.js";
let client = new Client(location.origin);
let lang = client.lang;
@ -75,8 +75,8 @@ const router = async(uri) => {
{ path: "/tournaments/create", view: TournamentCreateView },
{ path: "/tournaments/:id", view: TournamentPageView },
{ path: "/tournaments/", view: TournamentsView },
{ path: "/login", view: AuthentifyView },
{ path: "/register", view: AuthentifyView },
{ path: "/login", view: AuthenticationView },
{ path: "/register", view: AuthenticationView },
{ path: "/logout", view: LogoutView },
{ path: "/search", view: Search },
{ path: "/home", view: HomeView },