Skip to content

Commit

Permalink
Fix an omitted type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
mirismaili committed Dec 31, 2021
1 parent 074beec commit 47d5daf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { DeleteDialog } from './DeleteDialog';

export const MaterialArrayControlRenderer = (props: ArrayLayoutProps) => {
const [open, setOpen] = useState(false);
const [path, setPath] = useState(undefined);
const [path, setPath] = useState<string[]>(undefined);
const [rowData, setRowData] = useState(undefined);
const { removeItems, visible } = props;

Expand Down

0 comments on commit 47d5daf

Please sign in to comment.