aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/App.tsx
diff options
context:
space:
mode:
authorWolfboy248 <105884620+Wolfboy248@users.noreply.github.com>2024-10-20 16:51:43 +0200
committerWolfboy248 <105884620+Wolfboy248@users.noreply.github.com>2024-10-20 16:51:43 +0200
commit1c51ea2e373dcdd458d8cdc1d3b2225c316f346d (patch)
treee8a667b3260ae6e79582e89070967b90552c6e73 /frontend/src/App.tsx
parentrankings: handle ties like iverb (diff)
downloadlphub-1c51ea2e373dcdd458d8cdc1d3b2225c316f346d.tar.gz
lphub-1c51ea2e373dcdd458d8cdc1d3b2225c316f346d.tar.bz2
lphub-1c51ea2e373dcdd458d8cdc1d3b2225c316f346d.zip
refactor: touch ups
Diffstat (limited to 'frontend/src/App.tsx')
-rw-r--r--frontend/src/App.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 41e426c..d1d501d 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -25,6 +25,8 @@ const App: React.FC = () => {
25 const [profile, setProfile] = React.useState<UserProfile | undefined>(undefined); 25 const [profile, setProfile] = React.useState<UserProfile | undefined>(undefined);
26 const [isModerator, setIsModerator] = React.useState<boolean>(false); 26 const [isModerator, setIsModerator] = React.useState<boolean>(false);
27 27
28 const [msgIsOpen, setMsgIsOpen] = React.useState<boolean>(false);
29
28 const [games, setGames] = React.useState<Game[]>([]); 30 const [games, setGames] = React.useState<Game[]>([]);
29 31
30 const [uploadRunDialog, setUploadRunDialog] = React.useState<boolean>(false); 32 const [uploadRunDialog, setUploadRunDialog] = React.useState<boolean>(false);