fix(website): don't error if unstable node missing (#11191)

fix: don't error if unstable node missing
This commit is contained in:
Qjuh
2025-10-22 18:19:33 +02:00
committed by GitHub
parent 697556fd16
commit 886d4a7fcb
5 changed files with 5 additions and 5 deletions

View File

@@ -71,7 +71,7 @@ async function MethodBodyNode({
<DeprecatedNode deprecatedBlock={method.summary.deprecatedBlock} version={version} />
) : null}
{method.summary?.unstableBlock.length ? (
{method.summary?.unstableBlock?.length ? (
<UnstableNode unstableBlock={method.summary.unstableBlock} version={version} />
) : null}