Skip to content

Commit

Permalink
Merge pull request #846 from tidalcycles/slashocalypse
Browse files Browse the repository at this point in the history
fix: swatch png src
  • Loading branch information
felixroos committed Dec 6, 2023
2 parents bf30587 + cc4d38b commit ff45bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/pages/swatch/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const baseNoTrailing = BASE_URL.endsWith('/') ? BASE_URL.slice(0, -1) : BASE_URL
<div class="absolute w-full h-full flex justify-center items-center">
<span class="bg-slate-800 p-2 rounded-md text-white">{name}</span>
</div>
<img src={`${baseNoTrailing}/swatch/${name}.png/`} />
<img src={`${baseNoTrailing}/swatch/${name}.png`} />
</a>
))
}
Expand Down

0 comments on commit ff45bab

Please sign in to comment.