diff --git a/src/routes/configuration/typescript.mdx b/src/routes/configuration/typescript.mdx index c726ac2dc..5c668f4d8 100644 --- a/src/routes/configuration/typescript.mdx +++ b/src/routes/configuration/typescript.mdx @@ -584,7 +584,9 @@ return
{user()?.name}
; return (
- {(nonNullishUser) => nonNullishUser().name} + {(nonNullishUser) => <> + {nonNullishUser().name} + }
); ```