We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2f8c01 commit 8c13579Copy full SHA for 8c13579
packages/docusaurus-theme-openapi-docs/src/theme/ApiExplorer/Body/FormBodyItem/index.tsx
@@ -47,6 +47,7 @@ export default function FormBodyItem({
47
} else {
48
dispatch(clearFormBodyKey(id));
49
}
50
+ // eslint-disable-next-line react-hooks/exhaustive-deps
51
}, []);
52
53
if (
packages/docusaurus-theme-openapi-docs/src/theme/ApiExplorer/Body/index.tsx
@@ -364,7 +364,7 @@ function Body({
364
schemaObject={schemaVal}
365
id={schemaKey}
366
schema={schema}
367
- exampleValue={example.value[schemaKey]}
+ exampleValue={example[schemaKey]}
368
></FormBodyItem>
369
</FormItem>
370
);
0 commit comments