mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 01:49:40 +05:00
fix: Error on release and collection page if user isn't authorized
This commit is contained in:
parent
ea44bbf0e1
commit
5b68da425b
3 changed files with 3 additions and 3 deletions
|
@ -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 ? (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue