Remove extra line in project search

This commit is contained in:
Jeremy Soller 2025-11-06 19:48:49 -07:00
parent aa8183e81a
commit fbad8439ae
No known key found for this signature in database
GPG key ID: 670FDFB5428E05CA

View file

@ -72,7 +72,7 @@ impl ProjectSearchResult {
Ok(Some(first)) => { Ok(Some(first)) => {
lines.push(LineSearchResult { lines.push(LineSearchResult {
number, number,
text: text.to_string(), text: text.trim_end().to_string(),
first, first,
}); });
}, },