From f9d21d24a62904b2cbdf351ead3bbf97aa4232ff Mon Sep 17 00:00:00 2001 From: crazywoola <427733928@qq.com> Date: Thu, 18 May 2023 10:40:10 +0800 Subject: [PATCH] feat: feat: remove mock in fetcher --- web/app/components/datasets/documents/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/datasets/documents/index.tsx b/web/app/components/datasets/documents/index.tsx index 6434dcedeb..bd7a9f56f4 100644 --- a/web/app/components/datasets/documents/index.tsx +++ b/web/app/components/datasets/documents/index.tsx @@ -69,7 +69,7 @@ type IDocumentsProps = { datasetId: string } -export const fetcher = (url: string) => get(url, {}, { isMock: true }) +export const fetcher = (url: string) => get(url, {}, {}) const Documents: FC = ({ datasetId }) => { const { t } = useTranslation()