Skip to content

Commit

Permalink
chore(deps): update bod monorepo to ^5.21.5 (#1349)
Browse files Browse the repository at this point in the history
* chore(deps): update bod monorepo to ^5.21.5

* fix: rectify linter errors

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sabertazimi <[email protected]>
  • Loading branch information
renovate[bot] and sabertazimi authored Dec 15, 2024
1 parent 6f774d5 commit 1c114d9
Show file tree
Hide file tree
Showing 3 changed files with 435 additions and 547 deletions.
22 changes: 11 additions & 11 deletions components/PostsSearchBar/PostsSearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ function PostsSearchBar({ posts }: Props): JSX.Element {
setOptions(
value
? posts
.filter(({ title }) =>
title.toLowerCase().includes(value.toLowerCase()),
)
.map(({ slug, title }) => ({
value: title,
label: (
<div>
<Link href={`/post/${slug}`}>{title}</Link>
</div>
),
}))
.filter(({ title }) =>
title.toLowerCase().includes(value.toLowerCase()),
)
.map(({ slug, title }) => ({
value: title,
label: (
<div>
<Link href={`/post/${slug}`}>{title}</Link>
</div>
),
}))
: [],
)
},
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@dg-scripts/eslint-config": "^5.21.4",
"@dg-scripts/stylelint-config": "^5.21.4",
"@dg-scripts/eslint-config": "^5.21.5",
"@dg-scripts/stylelint-config": "^5.21.5",
"@octokit/types": "^13.6.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
Expand Down
Loading

0 comments on commit 1c114d9

Please sign in to comment.