Skip to content

Commit

Permalink
changing onClick function call
Browse files Browse the repository at this point in the history
  • Loading branch information
TalBenAvi committed Feb 18, 2024
1 parent aed517e commit 54b8846
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const ProvisionsPopup = () => {
right="0"
left="0"
backgroundColor="rgba(0,0,0,0.7)"
onClick={(e) => onClose(e)}
onClick={onClose}
>
<Box
pos="fixed"
Expand Down Expand Up @@ -64,7 +64,7 @@ const ProvisionsPopup = () => {
width="28px"
height="28px"
style={{ backgroundColor: "transparent" }}
onClick={(e) => onClose(e)}
onClick={onClose}
>
<CloseIcon />
</IconButton>
Expand Down

0 comments on commit 54b8846

Please sign in to comment.