diff --git a/src/components/sound/favorite/favorite.tsx b/src/components/sound/favorite/favorite.tsx index 45802a4..aba700f 100644 --- a/src/components/sound/favorite/favorite.tsx +++ b/src/components/sound/favorite/favorite.tsx @@ -11,9 +11,10 @@ import { useKeyboardButton } from '@/hooks/use-keyboard-button'; interface FavoriteProps { id: string; + label: string; } -export function Favorite({ id }: FavoriteProps) { +export function Favorite({ id, label }: FavoriteProps) { const isFavorite = useSoundStore(state => state.sounds[id].isFavorite); const toggleFavorite = useSoundStore(state => state.toggleFavorite); @@ -26,8 +27,12 @@ export function Favorite({ id }: FavoriteProps) { return (