From 9d38d811bd5843b4fc3b5cd44c0b173f026745cf Mon Sep 17 00:00:00 2001 From: Charles de Dreuille Date: Tue, 27 May 2025 13:37:49 +0100 Subject: [PATCH] Fix playground Signed-off-by: Charles de Dreuille --- canon-docs/src/app/(playground)/playground/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/canon-docs/src/app/(playground)/playground/page.tsx b/canon-docs/src/app/(playground)/playground/page.tsx index 3f1675551e..671d644993 100644 --- a/canon-docs/src/app/(playground)/playground/page.tsx +++ b/canon-docs/src/app/(playground)/playground/page.tsx @@ -80,11 +80,11 @@ const Content = () => { const Line = ({ content, title }: { content: ReactNode; title: string }) => { return ( - + {title} {content} - + ); };