fix: removing unused variable

This commit is contained in:
Gabriel Almeida 2023-03-20 09:49:54 -03:00
commit 64ba20ba3e

View file

@ -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<AxiosResponse<APIObjectType>> {
return await axios.get(`/all`);
}