From 352e75ff25cea0e3541b7fb022be2e1d9dca5f29 Mon Sep 17 00:00:00 2001 From: "Km.Van" Date: Mon, 13 Jul 2026 10:46:36 +0800 Subject: [PATCH] fix fetch status idle error --- src/Components/Utils/components/fetch-status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Utils/components/fetch-status.ts b/src/Components/Utils/components/fetch-status.ts index ada2d63..9b367a4 100644 --- a/src/Components/Utils/components/fetch-status.ts +++ b/src/Components/Utils/components/fetch-status.ts @@ -1 +1 @@ -export type FetchStatus = "loading" | "idel" | "error"; +export type FetchStatus = "loading" | "idle" | "error" | "refetching";