Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Nov 2, 2022
1 parent 8139e50 commit e4e5426
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion data-browser/src/components/forms/ResourceSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,12 @@ export const ResourceSelector = React.memo(function ResourceSelector({
const requiredClass = useResource(classType);
const [classTypeTitle] = useTitle(requiredClass);
const store = useStore();
const [dialogProps, showDialog, closeDialog, isDialogOpen] = useDialog();
const {
dialogProps,
show: showDialog,
close: closeDialog,
isOpen: isDialogOpen,
} = useDialog();
const { drive } = useSettings();

const [
Expand Down

0 comments on commit e4e5426

Please sign in to comment.