Skip to content
Snippets Groups Projects

CE-2916: Removes React import

Merged Johanna Szepanski requested to merge CE-2916-remove-react-import into develop
7 files
+ 408
708
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -22,7 +22,7 @@ export function DeployIOC({
wrapper: action,
error: deployError
} = useAPIMethod({
fcn: client.apis.IOCs.updateAndDeployIoc,
fcn: client.apis.IOCs.startOperation,
call: false
});
@@ -56,7 +56,7 @@ export function DeployIOC({
submitCallback(); // This works but throws a warning because I am changing state in the parent while the child is rerendering. Not sure yet how to fix.
return (
<Navigate
to={`/jobs/${deployment.operationId}`}
to={`/jobs/${deployment.id}`}
push
/>
);
Loading