diff --git a/src/common/fetch/unsafe-fetch.injectable.ts b/src/common/fetch/fetch-module.injectable.ts similarity index 100% rename from src/common/fetch/unsafe-fetch.injectable.ts rename to src/common/fetch/fetch-module.injectable.ts diff --git a/src/common/fetch/fetch.injectable.ts b/src/common/fetch/fetch.injectable.ts index ad825d3f6d..d4f51efe0d 100644 --- a/src/common/fetch/fetch.injectable.ts +++ b/src/common/fetch/fetch.injectable.ts @@ -4,7 +4,7 @@ */ import { getInjectable } from "@ogre-tools/injectable"; import type { RequestInit, Response } from "node-fetch"; -import nodeFetchModuleInjectable from "./unsafe-fetch.injectable"; +import nodeFetchModuleInjectable from "./fetch-module.injectable"; export type Fetch = (url: string, init?: RequestInit) => Promise;