Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make game appeal buttons work lol
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 5c65424 commit 1590d2c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions components/GameAppealCard.tsx
Expand Up @@ -88,8 +88,13 @@ export default function (props: GameAppealProps) {
</CardBody>
<CardFooter pb="4px">
<Box>
<Button colorScheme="red">Deny</Button>
<Button colorScheme="blue" ml="8px">
<Button
colorScheme="red"
onClick={async () => await performAction("deny")}
>
Deny
</Button>
<Button colorScheme="blue" ml="8px" onClick={onOpen}>
Accept
</Button>
</Box>
Expand Down

0 comments on commit 1590d2c

Please sign in to comment.