From 5b68da425b0351c9b812b52fdfacf53a746bb7f3 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Tue, 27 Aug 2024 14:27:49 +0500 Subject: [PATCH] fix: Error on release and collection page if user isn't authorized --- app/components/ReleaseInfo/ReleaseInfo.UserList.tsx | 2 +- app/pages/CollectionsFull.tsx | 2 +- app/pages/Release.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx b/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx index 85ddbf4..1bebecd 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.UserList.tsx @@ -27,7 +27,7 @@ export const ReleaseInfoUserList = (props: { setUserList: any; setIsFavorite: any; collection_count: number; - profile_id: number; + profile_id: number | null; }) => { const [AddReleaseToCollectionModalOpen, setAddReleaseToCollectionModalOpen] = useState(false); diff --git a/app/pages/CollectionsFull.tsx b/app/pages/CollectionsFull.tsx index 55ea2d1..144efa7 100644 --- a/app/pages/CollectionsFull.tsx +++ b/app/pages/CollectionsFull.tsx @@ -97,7 +97,7 @@ export function CollectionsFullPage(props: { sectionTitle={props.title} content={content} isMyCollections={ - props.type == "profile" && props.profile_id == userStore.user.id + props.type == "profile" && userStore.user && props.profile_id == userStore.user.id } /> ) : !isLoadingEnd || isLoading ? ( diff --git a/app/pages/Release.tsx b/app/pages/Release.tsx index b39d9d6..ea9dfd3 100644 --- a/app/pages/Release.tsx +++ b/app/pages/Release.tsx @@ -86,7 +86,7 @@ export const ReleasePage = (props: any) => { isFavorite={userFavorite} release_id={data.release.id} token={userStore.token} - profile_id={userStore.user.id} + profile_id={userStore.user ? userStore.user.id : null} setUserList={setUserList} setIsFavorite={setUserFavorite} collection_count={data.release.collection_count}