Skip to content

Commit

Permalink
disable camera for now + update todo
Browse files Browse the repository at this point in the history
  • Loading branch information
naueramant committed Jul 27, 2024
1 parent 3131ae3 commit 71f659f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion TODOS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# TODOS

- [ ] Better camera handling
- [ ] Game image in finish dialog
- [ ] Show player personal best in chug dialog
- [ ] Shuffle players at game start
- [ ] Location support
- [ ] Better independent sound handling
- [ ] Assets preloading
Expand Down
6 changes: 4 additions & 2 deletions src/views/Game/components/GamFinishedDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ const GameFinishedDialog: FunctionComponent<GameFinishedDialogProps> = (
padding: 0,
}}
>
<Camera />
{/* TODO: implement */}
{/* <Camera /> */}

<Stack
sx={{
Expand All @@ -114,7 +115,7 @@ const GameFinishedDialog: FunctionComponent<GameFinishedDialogProps> = (
>
<textarea
style={{
height: 50,
height: 150,
resize: "none",
border: "none",
outline: "none",
Expand All @@ -126,6 +127,7 @@ const GameFinishedDialog: FunctionComponent<GameFinishedDialogProps> = (
borderWidth: "1px",
marginTop: theme.spacing(2),
padding: theme.spacing(1),
fontSize: theme.typography.body1.fontSize,
}}
placeholder="Write a description"
maxLength={1000}
Expand Down

0 comments on commit 71f659f

Please sign in to comment.