Skip to content

Commit

Permalink
fix(AC-3696): gap issue of injected welcome messages
Browse files Browse the repository at this point in the history
  • Loading branch information
bang9 committed Sep 2, 2024
1 parent 1202faf commit 1c0f54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/chat/hooks/useBotStudioView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const useBotStudioView = () => {
const isLastMessage = index === welcomeMessages.length - 1;

return (
<div key={index} style={{ padding: '0 16px' }}>
<div key={index} style={{ padding: '0 16px', marginBottom: 16 }}>
<BotMessageWithBodyInput
chainTop={index === 0}
chainBottom={index === welcomeMessages.length - 1}
Expand Down

0 comments on commit 1c0f54e

Please sign in to comment.