Skip to content

Commit

Permalink
ui: bump prettier from 3.3.2 to 3.4.2 (#714)
Browse files Browse the repository at this point in the history
* ui: bump prettier from 3.3.2 to 3.4.2

Bumps [prettier](https://github.com/prettier/prettier) from 3.3.2 to 3.4.2.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.2...3.4.2)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* search: fix linting issue

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: IRHM <[email protected]>
  • Loading branch information
dependabot[bot] and IRHM authored Dec 29, 2024
1 parent 940f719 commit 7acd868
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"prettier": "^3.3.2",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.19",
"svelte-check": "^4.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(app)/search/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
} else {
console.error("Active search filter is invalid:", activeSearchFilter);
}
maxContentPage = cdata ? cdata.total_pages ?? 1 : 1;
maxContentPage = cdata ? (cdata.total_pages ?? 1) : 1;
searchResults = allSearchResults;
curPage++;
} else {
Expand Down

0 comments on commit 7acd868

Please sign in to comment.