This commit is contained in:
Half-Shot
2024-11-08 13:39:43 +00:00
parent 0d94d9abc9
commit 251d1c86f7
4 changed files with 3 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ export const PreferencesSettingsTab: FC = () => {
const onChangeSetting = (
e: ChangeEvent<HTMLInputElement>,
fn: (value: boolean) => void,
) => {
): void => {
fn(e.target.checked);
};