Skip to content

Commit 503bf00

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 1bf45fc commit 503bf00

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/BlogSearch/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,7 @@ export default function BlogSearch({ initialSearchTerm = "", onSearchSubmit }: B
192192
<div className="blog-search-section">
193193
<h4 className="blog-search-section-title">MATCHING ARTICLES</h4>
194194
<div className="blog-search-articles">
195-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
196-
{searchResults.articles.map((article, idx) => {
195+
{searchResults.articles.map((article) => {
197196
const itemIndex = selectableItems.findIndex((item) => item.label === article.title);
198197
return (
199198
<Link

0 commit comments

Comments
 (0)