clean console log

This commit is contained in:
Dom Sip 2022-04-19 18:52:11 +01:00
parent 3afc174b15
commit ce28ea2c00
2 changed files with 1 additions and 6 deletions

View File

@ -32,9 +32,6 @@ export default function getAllProductPathsOperation({
if (searchResults.total) {
products = normalizeSearchProducts(searchResults.hits)
} else {
// TODO: handle this better?
console.log('No results for search')
}
return {

View File

@ -30,10 +30,8 @@ export default function getAllProductsOperation({
if (searchResults.total) {
products = normalizeSearchProducts(searchResults.hits)
} else {
// TODO: handle this better?
console.log('No results for search')
}
return {
products: products,
}