Skip to content

Commit

Permalink
Fix product search results header style (#1405)
Browse files Browse the repository at this point in the history
* Fix product search results header style

* Update changeset
  • Loading branch information
tatsuya committed Oct 9, 2023
1 parent 50711df commit cf5fe84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/giant-chairs-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@shopify/cli-hydrogen': patch
---

Fix product search results header style
2 changes: 1 addition & 1 deletion templates/skeleton/app/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export function SearchResults({
function SearchResultsProductsGrid({products}: Pick<SearchQuery, 'products'>) {
return (
<div className="search-result">
<h3>Products</h3>
<h2>Products</h2>
<Pagination connection={products}>
{({nodes, isLoading, NextLink, PreviousLink}) => {
const itemsMarkup = nodes.map((product) => (
Expand Down

0 comments on commit cf5fe84

Please sign in to comment.