From 64ba20ba3e31a17cffbd315e5d2f295177d237f0 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Mon, 20 Mar 2023 09:49:54 -0300 Subject: [PATCH] fix: removing unused variable --- src/frontend/src/controllers/NodesServices/index.ts | 2 -- 1 file changed, 2 deletions(-) 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`); }