diff --git a/demo/openapi.yaml b/demo/openapi.yaml
index c570cc60..74c16b70 100644
--- a/demo/openapi.yaml
+++ b/demo/openapi.yaml
@@ -1193,7 +1193,7 @@ x-webhooks:
summary: New pet
description: Information about a new pet in the systems
operationId: newPet
- tags:
+ tags:
- pet
requestBody:
content:
@@ -1202,4 +1202,4 @@ x-webhooks:
$ref: "#/components/schemas/Pet"
responses:
"200":
- description: Return a 200 status to indicate that the data was received successfully
+ description: Return a 200 status to indicate that the data was received successfully
\ No newline at end of file
diff --git a/demo/playground/hmr-playground.tsx b/demo/playground/hmr-playground.tsx
index f378ca23..efd843ab 100644
--- a/demo/playground/hmr-playground.tsx
+++ b/demo/playground/hmr-playground.tsx
@@ -11,11 +11,6 @@ const userUrl = window.location.search.match(/url=(.*)$/);
const specUrl =
(userUrl && userUrl[1]) || (swagger ? 'swagger.yaml' : big ? 'big-openapi.json' : 'openapi.yaml');
-const options: RedocRawOptions = {
- nativeScrollbars: false,
- maxDisplayedEnumValues: 3,
- reverseEventsReadOnlyProps: true,
- reverseEventsWriteOnlyProps: true,
-};
+const options: RedocRawOptions = { nativeScrollbars: false, maxDisplayedEnumValues: 3 };
render(, document.getElementById('example'));
diff --git a/demo/playground/index.html b/demo/playground/index.html
index 7a3a5092..d322ee3e 100644
--- a/demo/playground/index.html
+++ b/demo/playground/index.html
@@ -22,4 +22,4 @@