Skip to content

Commit

Permalink
fix: added correct key name
Browse files Browse the repository at this point in the history
  • Loading branch information
rylanharper committed Dec 3, 2024
1 parent bf64a2f commit 936aca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const searchBaseVars = computed<SearchProductsQueryVariables>(() => ({
}));
const { data: searchBaseData } = await useAsyncData(
`search-filter-${searchTerm.value}`,
`search-base-${searchTerm.value}`,
() => shopify.search.products(searchBaseVars.value),
{ watch: [searchBaseVars], lazy: true, deep: false }
);
Expand Down

0 comments on commit 936aca7

Please sign in to comment.