Fixed tiles breaking if user is not logged in.

This commit is contained in:
2024-03-27 03:15:37 +01:00
parent ad635d4192
commit b5b3ad57bf
4 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
<div
class="movie-tile"
:class="{
unstashed: !favorited && pageStash && user && pageStash.user.id === user.id,
unstashed: !favorited && pageStash && user && pageStash.user.id === user?.id,
}"
>
<div
@@ -120,7 +120,7 @@ const props = defineProps({
const pageContext = inject('pageContext');
const user = pageContext.user;
const pageStash = pageContext.pageProps.stash;
const currentStash = pageStash || user.primaryStash;
const currentStash = pageStash || user?.primaryStash;
const currentYear = new Date().getFullYear();