diff --git a/queen-v2/src/components/lightOrchestrator/componentDisplayer/component.js b/queen-v2/src/components/lightOrchestrator/componentDisplayer/component.js index 9cd6f674..e67c4862 100644 --- a/queen-v2/src/components/lightOrchestrator/componentDisplayer/component.js +++ b/queen-v2/src/components/lightOrchestrator/componentDisplayer/component.js @@ -5,22 +5,20 @@ import { useCustomLunaticStyles } from 'components/lightOrchestrator/lunaticStyl export const ComponentDisplayer = ({ components, readonly, pageTag }) => { const lunaticClasses = useCustomLunaticStyles(); return ( - <> - ({ - filterDescription: false, - disabled: readonly, - readOnly: readonly, - shortcut: true, - })} - wrapper={({ children, id, componentType }) => ( -
- {children} -
- )} - /> - + ({ + filterDescription: false, + disabled: readonly, + readOnly: readonly, + shortcut: true, + })} + wrapper={({ children, id, componentType }) => ( +
+ {children} +
+ )} + /> ); };