From f2db759d20d1013e5451383019efc5d00562b171 Mon Sep 17 00:00:00 2001 From: Stijn Van Hulle Date: Mon, 19 Feb 2024 17:44:20 +0100 Subject: [PATCH] docs: fix import --- docs/guide/tutorial/templates.md | 2 +- docs/plugins/swagger-client/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/tutorial/templates.md b/docs/guide/tutorial/templates.md index 1571e6961..224994803 100644 --- a/docs/guide/tutorial/templates.md +++ b/docs/guide/tutorial/templates.md @@ -125,7 +125,7 @@ import { defineConfig } from '@kubb/core' import createSwagger from '@kubb/swagger' import createSwaggerTS from '@kubb/swagger-ts' -import { templates } from './templates/CustomClientTemplates.tsx' +import { templates } from './templates/CustomClientTemplate.tsx' export default defineConfig(async () => { return { diff --git a/docs/plugins/swagger-client/index.md b/docs/plugins/swagger-client/index.md index 54a5ec2f5..07047a196 100644 --- a/docs/plugins/swagger-client/index.md +++ b/docs/plugins/swagger-client/index.md @@ -712,7 +712,7 @@ export default defineConfig({ }) ``` -<<< @/../examples/client/templates/CustomClientTemplates.tsx +<<< @/../examples/client/templates/CustomClientTemplate.tsx :::