Skip to content

Commit

Permalink
fix: calling click handler with event to allow multiple selection again
Browse files Browse the repository at this point in the history
  • Loading branch information
gwynndp committed Dec 2, 2022
1 parent 578737a commit c79464b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ const Verify = (props) => {
}}
>
<Card
onClick={() => handleCaptureClick(capture.id)}
onClick={(e) => handleCaptureClick(e, capture.id)}
id={`card_${capture.id}`}
className={classes.card}
elevation={capture.placeholder ? 0 : 3}
Expand Down

0 comments on commit c79464b

Please sign in to comment.