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}