diff options
| author | Wolfboy248 <105884620+Wolfboy248@users.noreply.github.com> | 2024-10-20 16:51:43 +0200 |
|---|---|---|
| committer | Wolfboy248 <105884620+Wolfboy248@users.noreply.github.com> | 2024-10-20 16:51:43 +0200 |
| commit | 1c51ea2e373dcdd458d8cdc1d3b2225c316f346d (patch) | |
| tree | e8a667b3260ae6e79582e89070967b90552c6e73 /frontend/src/App.tsx | |
| parent | rankings: handle ties like iverb (diff) | |
| download | lphub-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.tsx | 2 |
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); |