diff --git a/react/src/components/Systems/SystemSelect.tsx b/react/src/components/Systems/SystemSelect.tsx index b400fee4..9a952502 100644 --- a/react/src/components/Systems/SystemSelect.tsx +++ b/react/src/components/Systems/SystemSelect.tsx @@ -11,6 +11,9 @@ export const SystemSelect: React.FC = ({ }) => { const { data: systems } = useSystems(); + // use dsProjects hook here + const dsProjects: any[] = []; + const findSystemById = (id: string): System | undefined => { return systems?.find((system) => system.id === id); }; @@ -35,6 +38,15 @@ export const SystemSelect: React.FC = ({ {publishDataSystem && ( )} + + {dsProjects.map((proj) => { + return ( + + ); + })} + );