diff --git a/src/app/components/message/layout/Bubble.tsx b/src/app/components/message/layout/Bubble.tsx index 2753e8f5..93ff84bc 100644 --- a/src/app/components/message/layout/Bubble.tsx +++ b/src/app/components/message/layout/Bubble.tsx @@ -40,19 +40,23 @@ export const BubbleLayout = as<'div', BubbleLayoutProps>( {header} - - - {!hideBubble && before ? : null} - {children} + {hideBubble ? ( + children + ) : ( + + + {before ? : null} + {children} + - + )} )