summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/promoApi.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/api/promoApi.js b/src/api/promoApi.js
index 95a27fd3..2c7f80a1 100644
--- a/src/api/promoApi.js
+++ b/src/api/promoApi.js
@@ -20,7 +20,6 @@ export const fetchPromoItemsSolr = async (type, start, rows) => {
try {
const queryParams = new URLSearchParams({ q: type });
const response = await fetch(`/solr/promotion_program_lines/select?${queryParams.toString()}&rows=${rows}&start=${start}`);
- console.log("URL",`/solr/promotion_program_lines/select?${queryParams.toString()}&rows=${rows}&start=${start}`)
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}