fix(sidebar): remove horizontal scroll in conversation search view

This commit is contained in:
Haileyesus
2026-06-28 17:48:56 +03:00
parent 98a3a3a1f4
commit f8430dc886

View File

@@ -32,7 +32,7 @@ function HighlightedSnippet({ snippet, highlights }: { snippet: string; highligh
parts.push(snippet.slice(cursor)); parts.push(snippet.slice(cursor));
} }
return ( return (
<span className="text-xs leading-relaxed text-muted-foreground"> <span className="min-w-0 flex-1 break-words text-xs leading-relaxed text-muted-foreground">
{parts} {parts}
</span> </span>
); );