fix(front): remove favorite button from artist detail page
This commit is contained in:
parent
6f5b40f68e
commit
9b758c1a7e
|
@ -14,7 +14,6 @@ import useLogger from '~/composables/useLogger'
|
|||
|
||||
import HumanDuration from '~/components/common/HumanDuration.vue'
|
||||
import EmbedWizard from '~/components/audio/EmbedWizard.vue'
|
||||
import TrackFavoriteIcon from '~/components/favorites/TrackFavoriteIcon.vue'
|
||||
import Loader from '~/components/ui/Loader.vue'
|
||||
import Button from '~/components/ui/Button.vue'
|
||||
import OptionsButton from '~/components/ui/button/Options.vue'
|
||||
|
@ -151,8 +150,6 @@ watch(() => props.id, fetchData, { immediate: true })
|
|||
type="artist"
|
||||
:object-id="object.id"
|
||||
/>
|
||||
<!-- TODO: Add artist to (Track)FavoriteIcon -->
|
||||
<TrackFavoriteIcon v-if="store.state.auth.authenticated" :artist="object" />
|
||||
<Popover>
|
||||
<template #default="{ toggleOpen }">
|
||||
<OptionsButton
|
||||
|
|
Loading…
Reference in New Issue