Skip to content

Commit

Permalink
delete all clear button
Browse files Browse the repository at this point in the history
  • Loading branch information
BruCandy committed Nov 22, 2024
1 parent 874091b commit cecc814
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/routes/kitchen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Kitchen() {

return (
<>
<Button
{/* <Button
colorScheme="red"
onClick={onOpen}
position="relative"
Expand All @@ -39,7 +39,7 @@ export default function Kitchen() {
mb="4"
>
すべて削除
</Button>
</Button> */}
<Wrap>
{orders.map((order) => {
const createTime = new Date(order.createTime).toLocaleString(
Expand Down Expand Up @@ -75,7 +75,7 @@ export default function Kitchen() {
})}
</Wrap>

<Modal isOpen={isOpen} onClose={onClose} motionPreset="slideInBottom">
{/* <Modal isOpen={isOpen} onClose={onClose} motionPreset="slideInBottom">
<ModalOverlay />
<ModalContent pb={2}>
<ModalBody mx={4}>
Expand All @@ -92,7 +92,7 @@ export default function Kitchen() {
</Button>
</ModalBody>
</ModalContent>
</Modal>
</Modal> */}
</>
)
}
Expand Down

0 comments on commit cecc814

Please sign in to comment.