Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-WorkGH authored Feb 11, 2025
1 parent f3c4449 commit fc43fa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/topBar/UserSettingsDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ interface UserSettingsDialogProps {

function UserSettingsDialog({ openDialog, onClose, developerMode, onDeveloperModeClick }: UserSettingsDialogProps) {
const handleDeveloperModeClick = useCallback(
(event: ChangeEvent<HTMLInputElement>) => { onDeveloperModeClick?.(event.target.checked); },
(event: ChangeEvent<HTMLInputElement>) => onDeveloperModeClick?.(event.target.checked),
[onDeveloperModeClick]
);

Expand Down

0 comments on commit fc43fa8

Please sign in to comment.