diff --git a/src/store.tsx b/src/store.tsx index 28b3157..89d5226 100644 --- a/src/store.tsx +++ b/src/store.tsx @@ -29,6 +29,8 @@ type FetchType = FetchTypeInterface; function fetchTypeRecord() { return Record>({ value: null as T | null, + error: undefined, + fetching: undefined, }); }