diff --git a/src/html/components/games-link.tsx b/src/html/components/games-link.tsx
index 9e4cd4b0..be205f24 100644
--- a/src/html/components/games-link.tsx
+++ b/src/html/components/games-link.tsx
@@ -2,14 +2,18 @@ import { collections } from '../../database/collections'
import { GameState } from '../../database/models/game.model'
import { GameLiveIndicator } from './game-live-indicator'
-export async function GamesLink() {
+export async function GamesLink(props: { active: boolean }) {
const gamesLiveCount = await collections.games.countDocuments({
state: {
$in: [GameState.created, GameState.configuring, GameState.launching, GameState.started],
},
})
return (
-
diff --git a/src/html/components/navigation-bar.tsx b/src/html/components/navigation-bar.tsx
index 1ff8cbbe..79237ee5 100644
--- a/src/html/components/navigation-bar.tsx
+++ b/src/html/components/navigation-bar.tsx
@@ -5,7 +5,7 @@ import { IconBrandSteam } from './icons/icon-brand-steam'
import { Profile } from './profile'
import Html from '@kitajs/html'
-export function NavigationBar(props: Html.PropsWithChildren<{ user?: User | undefined }>) {
+export function NavigationBar(props: { user?: User | undefined; currentPage: string }) {
return (