Fix potential undefined function error in info page
Add explicit import for Phoenix.HTML to ensure raw/1 function is available. This helps prevent 'view crashed - undefined' errors that may occur in certain environments. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
177f0746bc
commit
468309c70d
1 changed files with 1 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ defmodule AprsmeWeb.InfoLive.Show do
|
|||
use AprsmeWeb, :live_view
|
||||
use Gettext, backend: AprsmeWeb.Gettext
|
||||
|
||||
import Phoenix.HTML, only: [raw: 1]
|
||||
import AprsmeWeb.Components.InfoMapComponent
|
||||
|
||||
alias Aprsme.Callsign
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue