diff --git a/components/filters/tags.vue b/components/filters/tags.vue index 5c88926..3e23078 100644 --- a/components/filters/tags.vue +++ b/components/filters/tags.vue @@ -146,7 +146,6 @@ const { pageProps } = inject('pageContext'); const { tag: pageTag, actor: pageActor, - stash: pageStash, } = pageProps; const search = ref(''); @@ -177,7 +176,7 @@ const priorityTags = [ 'lesbian', ]; -const isActorTagsAvailable = computed(() => props.actorTags && (props.filters.actors.length > 0 || pageActor) && !pageStash); +const isActorTagsAvailable = computed(() => props.actorTags && (props.filters.actors.length > 0 || pageActor)); const groupedTags = computed(() => { // can't show actor tags inside stash, because both require a join, and manticore currently only supports one