From f14ac7aeb4844f707c0afbe0ea234564957c04d3 Mon Sep 17 00:00:00 2001 From: nmorasb Date: Tue, 5 Dec 2023 09:32:16 -0500 Subject: [PATCH] ref MAT-6157: lint fix --- src/components/common/CreateNewLibraryDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/common/CreateNewLibraryDialog.tsx b/src/components/common/CreateNewLibraryDialog.tsx index d43d613..20951ba 100644 --- a/src/components/common/CreateNewLibraryDialog.tsx +++ b/src/components/common/CreateNewLibraryDialog.tsx @@ -43,7 +43,7 @@ const CreateNewLibraryDialog: React.FC = ({ const [organizations, setOrganizations] = useState(); const organizationApi = useRef(useOrganizationApi()).current; - const modelOptions = Object.keys(Model);; + const modelOptions = Object.keys(Model); // fetch organizations DB using measure service and sorts alphabetically useEffect(() => {