diff --git a/src/frontend/src/controllers/NodesServices/index.ts b/src/frontend/src/controllers/NodesServices/index.ts index 8cc3f8ef8..046566bc2 100644 --- a/src/frontend/src/controllers/NodesServices/index.ts +++ b/src/frontend/src/controllers/NodesServices/index.ts @@ -1,8 +1,6 @@ import { APIObjectType, sendAllProps } from '../../types/api/index'; import axios, { AxiosResponse } from "axios"; -const backendUrl = window.sessionStorage.getItem('port') || "http://localhost:7860"; - export async function getAll():Promise> { return await axios.get(`/all`); }