Skip to content

Commit

Permalink
style: light theme fix for PlaylistViewDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
miksuh-dev committed Mar 25, 2023
1 parent a91129d commit 37fb7bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/PlaylistViewDialog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { SearchResultPlaylist, SearchResultSong, Song } from "trpc/types";

type Props = {
playlist: SearchResultPlaylist;
playing: Song;
playing: Song | undefined;
songs: Song[];
onSongAdd: (songs: SearchResultSong[]) => Promise<void>;
onClose: () => void;
Expand Down Expand Up @@ -123,7 +123,7 @@ const PlaylistView: Component<Props> = (props) => {
/>
</Show>
<div class="ml-4">
<h3 class="text-md text-left font-medium text-neutral-200">
<h3 class="text-md text-left font-medium text-neutral-900 dark:text-neutral-200">
{htmlDecode(song.title)}
</h3>
</div>
Expand Down

0 comments on commit 37fb7bd

Please sign in to comment.