diff --git a/www/apps/api-reference/components/Tags/Operation/Parameters/Description/index.tsx b/www/apps/api-reference/components/Tags/Operation/Parameters/Description/index.tsx index 3111a5798c..3c3a8d2cae 100644 --- a/www/apps/api-reference/components/Tags/Operation/Parameters/Description/index.tsx +++ b/www/apps/api-reference/components/Tags/Operation/Parameters/Description/index.tsx @@ -62,7 +62,7 @@ const TagOperationParametersDescription = ({ default: typeDescription = ( <> - {schema.type} + {!schema.type ? "any" : schema.type} {schema.nullable ? ` or null` : ""} {schema.format ? ` <${schema.format}>` : ""}