fix: try to fetch user collection info for anonymous user

This commit is contained in:
Kentai Radiquum 2024-11-17 02:29:50 +05:00
parent 7effb886f4
commit 58f5c9ce7c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -146,6 +146,7 @@ const AddReleaseToCollectionModal = (props: {
profile_id: number;
}) => {
const getKey = (pageIndex: number, previousPageData: any) => {
if (!props.token) return null;
if (previousPageData && !previousPageData.content.length) return null;
return `${ENDPOINTS.collection.userCollections}/${props.profile_id}/${pageIndex}?token=${props.token}`;
};