Skip to content

Commit

Permalink
chore(client): deleted all logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kired01 committed Jun 10, 2024
1 parent 11998e4 commit 8a30358
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/client/src/entities/product/api/get-products.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ const productSearchParams = new URLSearchParams(productQueries)
export const getProducts = async ({ page = 1 }: { page?: number } = {}) => {
productSearchParams.set("pagination[page]", String(page))
const { data } = await http.get<IProductResponse>(`/products?${productSearchParams.toString()}`)
console.log(data)
return data
}
1 change: 0 additions & 1 deletion apps/client/src/entities/product/api/get-sliders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const sliderQueries: Record<string, string> = {
const sliderSearchParams = new URLSearchParams(sliderQueries)

export const getSliders = async () => {
console.log(sliderSearchParams.toString())
const { data } = await http.get<ISliderResponse>(`/sliders?${sliderSearchParams.toString()}`)
return data
}

0 comments on commit 8a30358

Please sign in to comment.