fix: type error in $dropFetch

This commit is contained in:
Huskydog9988
2025-04-15 22:01:24 -04:00
parent 87215c4a1e
commit 456902c784

View File

@ -30,6 +30,8 @@ interface DropFetch<
export const $dropFetch: DropFetch = async (request, opts) => {
if (!getCurrentInstance()?.proxy) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore Excessive stack depth comparing types
return await $fetch(request, opts);
}
const id = request.toString();