diff --git a/src/app/[locale]/(default)/(storage-summary)/storage/page.tsx b/src/app/[locale]/(default)/(storage-summary)/storage/page.tsx index 4f01390..bd707b9 100644 --- a/src/app/[locale]/(default)/(storage-summary)/storage/page.tsx +++ b/src/app/[locale]/(default)/(storage-summary)/storage/page.tsx @@ -1,7 +1,7 @@ import { items } from '@/mock-data/items'; import { useTranslations } from 'next-intl'; import { getTranslations, unstable_setRequestLocale } from 'next-intl/server'; -import { createSearchParamsCache, parseAsInteger } from 'nuqs/parsers'; +import { createSearchParamsCache, parseAsInteger } from 'nuqs/server'; import { PaginationCarousel } from '@/components/layout/PaginationCarousel'; import { ItemCard } from '@/components/storage/ItemCard'; diff --git a/src/components/storage/CategorySelector.tsx b/src/components/storage/CategorySelector.tsx index 4110c06..c2f70a2 100644 --- a/src/components/storage/CategorySelector.tsx +++ b/src/components/storage/CategorySelector.tsx @@ -2,7 +2,7 @@ import { useSearchParams } from 'next/navigation'; import { useQueryState } from 'nuqs'; -import { parseAsString } from 'nuqs/parsers'; +import { parseAsString } from 'nuqs/server'; import { Combobox } from '../ui/Combobox'; type CategorySelectorProps = {