fix lint warnings

This commit is contained in:
proddy
2025-10-20 22:19:05 +02:00
parent 172e8d0028
commit c3d066650c

View File

@@ -54,7 +54,10 @@ const CustomizationsDialog = ({
}
}, [open, selectedItem]);
const handleClose = (_event, reason: 'backdropClick' | 'escapeKeyDown') => {
const handleClose = (
_event: React.SyntheticEvent,
reason: 'backdropClick' | 'escapeKeyDown'
) => {
if (reason !== 'backdropClick') {
onClose();
}