diff --git a/src/ui/component/claimList/view.jsx b/src/ui/component/claimList/view.jsx index 9b7014405..859fe9967 100644 --- a/src/ui/component/claimList/view.jsx +++ b/src/ui/component/claimList/view.jsx @@ -21,6 +21,7 @@ type Props = { empty?: string, defaultSort?: boolean, onScrollBottom?: any => void, + page?: number, // If using the default header, this is a unique ID needed to persist the state of the filter setting persistedStorageKey?: string, }; @@ -37,6 +38,7 @@ export default function ClaimList(props: Props) { type, header, onScrollBottom, + page, } = props; const [currentSort, setCurrentSort] = usePersistedState(persistedStorageKey, SORT_NEW); const hasUris = uris && !!uris.length; @@ -101,7 +103,7 @@ export default function ClaimList(props: Props) {