mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
Revert "use new favorite color for icons"
This reverts commit 23c81d3bdc.
This commit is contained in:
@@ -168,7 +168,7 @@ const DummyAlbumDetailRoute = () => {
|
||||
<ActionIcon
|
||||
icon="favorite"
|
||||
iconProps={{
|
||||
fill: detailQuery?.data?.userFavorite ? 'favorite' : undefined,
|
||||
fill: detailQuery?.data?.userFavorite ? 'primary' : undefined,
|
||||
}}
|
||||
loading={
|
||||
createFavoriteMutation.isPending ||
|
||||
|
||||
@@ -235,7 +235,7 @@ export const AlbumArtistDetailContent = () => {
|
||||
<ActionIcon
|
||||
icon="favorite"
|
||||
iconProps={{
|
||||
fill: detailQuery?.data?.userFavorite ? 'favorite' : undefined,
|
||||
fill: detailQuery?.data?.userFavorite ? 'primary' : undefined,
|
||||
}}
|
||||
onClick={handleFavorite}
|
||||
size="lg"
|
||||
|
||||
@@ -69,7 +69,7 @@ export const MobileFullscreenPlayerMetadata = memo(
|
||||
<ActionIcon
|
||||
icon="favorite"
|
||||
iconProps={{
|
||||
fill: isFavorite ? 'favorite' : undefined,
|
||||
fill: isFavorite ? 'primary' : undefined,
|
||||
size: 'md',
|
||||
}}
|
||||
onClick={onToggleFavorite}
|
||||
|
||||
@@ -209,7 +209,7 @@ export const RightControls = () => {
|
||||
<ActionIcon
|
||||
icon="favorite"
|
||||
iconProps={{
|
||||
fill: currentSong?.userFavorite ? 'favorite' : undefined,
|
||||
fill: currentSong?.userFavorite ? 'primary' : undefined,
|
||||
size: 'lg',
|
||||
}}
|
||||
onClick={(e) => {
|
||||
|
||||
Reference in New Issue
Block a user