Skip to content

Commit

Permalink
chore: commented out button click for create/edit
Browse files Browse the repository at this point in the history
  • Loading branch information
javalosr2004 committed Feb 10, 2024
1 parent 1e4cf94 commit 573bd73
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/components/CreateEditEvent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ const CreateEditEvent = ({create}: Props) => {
const { isOpen, onOpen, onClose } = useDisclosure()
return (
<>
<Button onClick={onOpen}>
{/* <Button onClick={onOpen}>
<>
{create ? "Create " : "Edit "} Event
</>
</Button>
</Button> */}

<Modal isOpen={isOpen} onClose={onClose} size='xl'>
<ModalOverlay />
Expand Down

0 comments on commit 573bd73

Please sign in to comment.