Skip to content

Commit

Permalink
Fix MDS bug
Browse files Browse the repository at this point in the history
Signed-off-by: saimedhi <[email protected]>
  • Loading branch information
saimedhi committed Dec 13, 2024
1 parent 4b1e90f commit 7d50aef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/pages/workflows/workflows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export function Workflows(props: WorkflowsProps) {
})
);
}
}, []);
}, [dataSourceId, dataSourceEnabled]);

useEffect(() => {
const { history, location } = props;
Expand All @@ -176,7 +176,7 @@ export function Workflows(props: WorkflowsProps) {
})
);
}
}, [dataSourceId, setDataSourceId]);
}, [dataSourceId, setDataSourceId, dataSourceEnabled]);

const handleDataSourceChange = ([event]: DataSourceOption[]) => {
const dataSourceEventId = event?.id;
Expand Down

0 comments on commit 7d50aef

Please sign in to comment.