We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69319fd commit 278dca0Copy full SHA for 278dca0
1 file changed
artifacts/game-client/src/App.tsx
@@ -1,8 +1,7 @@
1
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
2
-import { Route, Router, Switch } from "wouter";
+import { Route, Router, Switch, Redirect } from "wouter";
3
import { Toaster } from "@/components/ui/toaster";
4
import { TooltipProvider } from "@/components/ui/tooltip";
5
-import { HostPage } from "@/pages/HostPage";
6
import { ViewerPage } from "@/pages/ViewerPage";
7
import { GamePage } from "@/pages/GamePage";
8
import { SpectatorPage } from "@/pages/SpectatorPage";
@@ -51,7 +50,7 @@ function App() {
51
50
<Route component={Adepts3NotFound} />
52
</Switch>
53
</Route>
54
- <Route path="/" component={HostPage} />
+ <Route path="/"><Redirect to="/adepts-game/" /></Route>
55
56
<GamePhaseArrows />
57
</>
0 commit comments