From d7688f102e71b7f6922d068734933b4032d0bd37 Mon Sep 17 00:00:00 2001 From: reza Date: Thu, 2 Jul 2026 22:31:44 +0430 Subject: [PATCH] fix(editor): apply monospace font to inline code (#394) --- src/components/editor/components/leaf/Leaf.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/editor/components/leaf/Leaf.tsx b/src/components/editor/components/leaf/Leaf.tsx index 3ffb0213..ac07cb34 100644 --- a/src/components/editor/components/leaf/Leaf.tsx +++ b/src/components/editor/components/leaf/Leaf.tsx @@ -62,7 +62,7 @@ export function Leaf({ attributes, children, leaf, text }: RenderLeafProps) { if (leaf.code && !(leaf.formula || leaf.mention || leaf.reference)) { newChildren = ( - + {newChildren} );