Skip to content

Commit

Permalink
style: update indent
Browse files Browse the repository at this point in the history
  • Loading branch information
varshamenon4 committed Nov 21, 2024
1 parent 08fad14 commit 32477d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ChatBox/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const ChatBox = ({ chatboxContainerRef }) => {
<Message key={timestamp} variant={role} message={content} />
))}
{(messageList.length !== 0 && messagesBeforeToday.length !== 0) && (
<MessageDivider text="Today" data-testid="today-divider" />
<MessageDivider text="Today" data-testid="today-divider" />
)}
{messagesToday.map(({ role, content, timestamp }) => (
<Message key={timestamp} variant={role} message={content} />
Expand Down

0 comments on commit 32477d3

Please sign in to comment.