Skip to content

Commit

Permalink
Refactoring code
Browse files Browse the repository at this point in the history
  • Loading branch information
lberoiza-adesso committed Jan 18, 2024
1 parent 4e617d0 commit 747afc4
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/spotify-twitch-clone.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/components/PlayerVolumeControl.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export const PlayerVolumeControl = () => {
return (
<div className="flex justify-center gap-x-2 text-white">
<button className="opacity-70 hover:opacity-100 transition" onClick={handleClickVolumen}>
{/* {isVolumeSilenced ? <VolumeSilenced /> : <Volume />}*/}
<PlayerVolumeIconComponent />
</button>

Expand Down
5 changes: 3 additions & 2 deletions src/pages/playlist/[id].astro
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ const playListSongs = songs.filter((song) => song.albumId === playlist?.albumId)
<h2 class="flex flex-1 items-end">Playlist</h2>
<div>
<h1 class="text-5xl font-bold block text-white">
{playlist?.title}
<span transition:name=`playlist ${playlist?.id} title`></span>
<span transition:name=`playlist ${playlist?.id} title`>
{playlist?.title}
</span>
</h1>
</div>

Expand Down

0 comments on commit 747afc4

Please sign in to comment.