Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sha-dos committed Mar 9, 2024
1 parent 2e8eafd commit eaf586b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function RootLayout({
>
<Providers themeProps={{ attribute: "class", defaultTheme: "dark" }}>
<div className="relative flex flex-col h-screen">
<Navbar />
<Navbar />
<main className="container mx-auto max-w-7xl flex-grow">
{/*children*/}
<a>currently down</a>
Expand Down
2 changes: 1 addition & 1 deletion app/viewer/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function ViewerPage() {
<Button variant="bordered" onPress={() => setView(View.Teams)}>Teams</Button>
</ButtonGroup>

{view == View.Matches ? <MatchListView matchData={matchData} updateSelectedMatch={updateSelectedMatch} updateSelectedTeam={updateSelectedTeam}/> : <TeamListView />}
{/*view == View.Matches ? <MatchListView matchData={matchData} updateSelectedMatch={updateSelectedMatch} updateSelectedTeam={updateSelectedTeam}/> : <TeamListView />*/}
</>
)
}
Expand Down

0 comments on commit eaf586b

Please sign in to comment.