Feature/remove mock server (#88)

This commit is contained in:
crazywoola 2023-05-18 10:50:34 +08:00 committed by GitHub
commit a43ef7a926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 10 additions and 1171 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()