feat: feat: remove mock in fetcher

This commit is contained in:
crazywoola 2023-05-18 10:40:10 +08:00
parent 811bfbf420
commit f9d21d24a6
1 changed files with 1 additions and 1 deletions

View File

@ -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<IDocumentsProps> = ({ datasetId }) => {
const { t } = useTranslation()