mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
convert category to number before checking for int (#422)
This commit is contained in:
@@ -22,7 +22,7 @@ export const handler: SWRHook<SearchProductsHook> = {
|
||||
const url = new URL(options.url!, 'http://a')
|
||||
|
||||
if (search) url.searchParams.set('search', search)
|
||||
if (Number.isInteger(categoryId))
|
||||
if (Number.isInteger(Number(categoryId)))
|
||||
url.searchParams.set('categoryId', String(categoryId))
|
||||
if (Number.isInteger(brandId))
|
||||
url.searchParams.set('brandId', String(brandId))
|
||||
|
Reference in New Issue
Block a user