Bug fixes

This commit is contained in:
Luis Alvarez
2020-10-26 18:46:38 -05:00
parent 0ec552c2b8
commit 364ef332c1
3 changed files with 3 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ const WishlistButton: FC<Props> = ({
className={cn({ 'opacity-50': loading }, className)}
onClick={handleWishlistChange}
>
<Heart fill={itemInWishlist ? 'white' : 'none'} />
<Heart fill={itemInWishlist ? 'var(--pink)' : 'none'} />
</button>
)
}