Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreytheCoder committed Mar 7, 2024
1 parent 7297721 commit 6fba6ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/SearchMessage/SearchMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const Search = () => {
alignItems: messageList.length === 0 ? 'center' : 'initial',
}}
>
{messageList.length == 0 ? (
{messageList.length === 0 ? (
<Box
style={{
display: 'flex',
Expand Down Expand Up @@ -141,7 +141,7 @@ const Search = () => {
newDay={false}
sequential={false}
variant="default"
showAvatar={true}
showAvatar
showToolbox={false}
/>
</Box>
Expand Down

0 comments on commit 6fba6ba

Please sign in to comment.