diff --git a/components/Filter/FilterBy/Price.tsx b/components/Filter/FilterBy/Price.tsx index f7ca79e5..f4715142 100644 --- a/components/Filter/FilterBy/Price.tsx +++ b/components/Filter/FilterBy/Price.tsx @@ -43,9 +43,7 @@ const FilterByPrice: FC = ({ const filterResult = watch() - const { data: currencyData } = useFetchCurrenciesQuery({ - ssr: false, - }) + const { data: currencyData } = useFetchCurrenciesQuery() const currencies = useMemo( () => filterResult.chains.length > 0 diff --git a/hooks/useFees.ts b/hooks/useFees.ts index bb050525..2618ee8e 100644 --- a/hooks/useFees.ts +++ b/hooks/useFees.ts @@ -19,9 +19,7 @@ export default function useFees({ quantity: BigNumber debounceTimeout?: number }) { - const [fetchFees, { data, previousData }] = useFeesLazyQuery({ - ssr: false, - }) + const [fetchFees, { data, previousData }] = useFeesLazyQuery() const [loading, setLoading] = useState(false) // manual state to tell if the fetch is in progress. Cannot use the loading param from useFeesLazyQuery because of the debounce feature useEffect(() => { if (currencyId === undefined) return