Skip to content

Commit 8c93b7c

Browse files
committed
Fixed misspelled information for the productSuggestions query
1 parent 469af99 commit 8c93b7c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Misspelled information for the productSuggestions query.
13+
1014
## [1.76.0] - 2025-02-07
1115

1216
### Changed

node/resolvers/search/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,8 @@ export const queries = {
729729

730730
return {
731731
...result,
732-
count: result.recordsFiltered
732+
count: result.recordsFiltered,
733+
misspelled: result.correction?.misspelled,
733734
}
734735
},
735736
banners: (

0 commit comments

Comments
 (0)