Add some debug

This commit is contained in:
Jackson Harper
2024-03-04 21:22:57 +08:00
parent 8d77341dd0
commit 36e62f2984
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ type ConfirmationModalProps = {
export function ConfirmationModal(props: ConfirmationModalProps): JSX.Element {
const safeOnOpenChange = useCallback(
(open: boolean) => {
document.body.style.removeProperty('pointer-events')
// document.body.style.removeProperty('pointer-events')
props.onOpenChange(open)
},
[props]