diff --git a/desktop/plugins/public/ui-debugger/components/Tree.tsx b/desktop/plugins/public/ui-debugger/components/Tree.tsx index be083aff5..bcab63b0f 100644 --- a/desktop/plugins/public/ui-debugger/components/Tree.tsx +++ b/desktop/plugins/public/ui-debugger/components/Tree.tsx @@ -315,12 +315,10 @@ function InlineAttributes({attributes}: {attributes: Record}) { return ( <> {Object.entries(attributes ?? {}).map(([key, value]) => ( - <> - - {key} - ={highlightManager.render(value)} - - + + {key} + ={highlightManager.render(value)} + ))} );