Skip to content

Commit

Permalink
feat: fix chatlist spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
FallenDeity committed Oct 21, 2023
1 parent d864e17 commit fb0b502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Chat/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default function List({ conversation }: { conversation: FullConversationT
<BiFilter className="cursor-pointer text-xl text-[#54656f] dark:text-[#aebac1]" />
</div>
</div>
<div className="flex h-[90vh] flex-grow flex-col overflow-y-auto border-t border-[#e9edef] pb-24 scrollbar-thin scrollbar-thumb-gray-300 dark:border-[#313d45] dark:scrollbar-thumb-gray-700 lg:h-[80vh]">
<div className="flex h-[89vh] flex-grow flex-col overflow-y-auto border-t border-[#e9edef] pb-24 scrollbar-thin scrollbar-thumb-gray-300 dark:border-[#313d45] dark:scrollbar-thumb-gray-700 lg:h-[80vh]">
{session &&
searchResults.length === 0 &&
conversations.map((conversation: FullConversationType) => (
Expand Down

0 comments on commit fb0b502

Please sign in to comment.