From f31b343aa048b3671ab6f77485a30cfa55a62cd1 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 21 Mar 2024 12:19:43 -0400 Subject: [PATCH] fix: don't use hash import --- src/axios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/axios.ts b/src/axios.ts index b9cf63c..a873002 100644 --- a/src/axios.ts +++ b/src/axios.ts @@ -1,5 +1,5 @@ import Axios, {AxiosError, AxiosRequestConfig} from "axios"; -import {S5Error} from "#client.js"; +import {S5Error} from "./client.js"; export interface CancelablePromise extends Promise { cancel: () => void;