jam411 3 лет назад
Родитель
Сommit
16a2753645
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/app/src/stores/context.tsx

+ 1 - 1
packages/app/src/stores/context.tsx

@@ -228,7 +228,7 @@ export const useRendererConfig = (initialData?: RendererConfig): SWRResponse<Ren
   return useStaticSWR('growiRendererConfig', initialData);
 };
 
-export const useIsAllReplyShown = (initialData?: boolean): SWRResponse<boolean, any> => {
+export const useIsAllReplyShown = (initialData?: boolean): SWRResponse<boolean, Error> => {
   return useStaticSWR('isAllReplyShown', initialData);
 };