diff --git a/frontend/static/js/index.js b/frontend/static/js/index.js index 8b5c5e0..9a62e1e 100644 --- a/frontend/static/js/index.js +++ b/frontend/static/js/index.js @@ -93,7 +93,7 @@ const router = async(uri) => { { path: "/matchmaking", view: MatchMakingView }, { path: "/games/pong/offline", view: PongOfflineView }, { path: "/games/pong/:id", view: PongOnlineView }, - { path: "/games/tictactoe", view: TicTacToeOfflineView }, + { path: "/games/tictactoe/offline", view: TicTacToeOfflineView }, { path: "/games/tictactoe/:id", view: TicTacToeOnlineView }, ]; diff --git a/frontend/static/js/views/HomeView.js b/frontend/static/js/views/HomeView.js index 4822dbd..17adb2f 100644 --- a/frontend/static/js/views/HomeView.js +++ b/frontend/static/js/views/HomeView.js @@ -12,7 +12,7 @@ export default class extends AbstractAuthenticatedView {

${lang.get('homeTitle', 'Home')}

${lang.get('homeOnline', 'Play online')} ${lang.get('homeOffline', 'Play offline')} - ${lang.get('ticTacToe')} + ${lang.get('ticTacToe')} ${lang.get('homeSettings', 'Settings')} ${lang.get('homeLogout', 'Logout')} `;