Fix doubly-wrapped safe tuple in artist bio render

This commit is contained in:
Claudio Ortolina
2026-04-17 16:00:22 +01:00
parent 2ef86ae75a
commit 94143010c0
2 changed files with 28 additions and 1 deletions
@@ -739,6 +739,6 @@ defmodule MusicLibraryWeb.ArtistLive.Show do
# Wikipedia returns sanitized HTML, so we can skip sanitization.
# sobelow_skip ["XSS.Raw"]
defp render_bio(biography) do
{Phoenix.HTML.raw(biography.bio_html)}
Phoenix.HTML.raw(biography.bio_html)
end
end