Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
smritidoneria committed Sep 27, 2024
1 parent 3990f1d commit a197eb3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export const MessageAggregator = ({
const styles = getMessageAggregatorStyles(theme);
const setExclusiveState = useSetExclusiveState();
const messages = useMessageStore((state) => state.messages);
const threadMessages=useMessageStore((state)=>state.threadMessages)|| [];
const allMessages=[...messages,...threadMessages];
const threadMessages = useMessageStore((state) => state.threadMessages) || [];
const allMessages = [...messages, ...threadMessages];
const [messageRendered, setMessageRendered] = useState(false);
const { loading, messageList } = useSetMessageList(
searchFiltered || allMessages,
Expand Down

0 comments on commit a197eb3

Please sign in to comment.