Skip to content
Snippets Groups Projects
Commit 72430b3a authored by Max Frederiksen's avatar Max Frederiksen Committed by Max Frederiksen
Browse files

remove unused imports and vars

parent dac50970
No related branches found
No related tags found
3 merge requests!542Prepare 4.1.0,!540Sync,!533CE-3015: Implement correct error handling for operation errors
...@@ -5,13 +5,12 @@ import { ...@@ -5,13 +5,12 @@ import {
Typography, Typography,
Tooltip Tooltip
} from "@mui/material"; } from "@mui/material";
import { useState, useEffect, useContext, useCallback } from "react"; import { useState, useEffect, useCallback } from "react";
import { ConfirmationDialog, useAPIMethod } from "@ess-ics/ce-ui-common"; import { ConfirmationDialog } from "@ess-ics/ce-ui-common";
import Alert from "@mui/material/Alert"; import Alert from "@mui/material/Alert";
import { initRequestParams } from "../../common/Helper"; import { initRequestParams } from "../../common/Helper";
import AccessControl from "../../auth/AccessControl"; import AccessControl from "../../auth/AccessControl";
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
import { apiContext } from "../../../api/DeployApi";
import { useStartOperationMutation } from "../../../store/deployApi"; import { useStartOperationMutation } from "../../../store/deployApi";
import { getErrorMessage } from "../../common/Alerts/ApiAlertError"; import { getErrorMessage } from "../../common/Alerts/ApiAlertError";
...@@ -30,8 +29,6 @@ export function IOCService({ ...@@ -30,8 +29,6 @@ export function IOCService({
const [stopModalOpen, setStopModalOpen] = useState(false); const [stopModalOpen, setStopModalOpen] = useState(false);
const [command, setCommand] = useState(null); const [command, setCommand] = useState(null);
const client = useContext(apiContext);
const [startIOC, { error: startJobError, data: startJob }] = const [startIOC, { error: startJobError, data: startJob }] =
useStartOperationMutation(); useStartOperationMutation();
const [stopIOC, { error: stopJobError, data: stopJob }] = const [stopIOC, { error: stopJobError, data: stopJob }] =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment