diff options
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); |