type fixes for React 18

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-10-13 00:05:25 +02:00
parent b2817daf0c
commit 0296f272b4
50 changed files with 193 additions and 94 deletions
@@ -74,7 +74,7 @@ export const GroupListPicker = (props: GroupListPickerProps) => {
}, [catalogApi, groupTypes]);
const handleChange = useCallback(
(_, v: GroupEntity | null) => {
(_: unknown, v: GroupEntity | null) => {
onChange(v ?? undefined);
setAnchorEl(null);
},