-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix OpenAPI spec recursion #2920
Conversation
|
Summary of the deployments: Version 1 (production)
Version 2 (experimental)
Test content |
The latest updates on your projects. Learn more about Argos notifications ↗︎
|
return <OpenAPISchemaCircularRef id={parentCircularRef} schema={schema} />; | ||
} | ||
|
||
const circularRefs = parentCircularRefs.set(schema, id); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am mutating the parentCircularRefs which is bad but I don't understand why it does not work else...
I suspect streaming and Suspense to cut the rendering, start it again and never reach a point where it works.
No description provided.