From 5b874185e93003b35abdb55e648835324099c149 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 12 Oct 2025 11:51:35 -0500 Subject: [PATCH] fix: change streams.packets to packets in template The template was trying to access @streams.packets but LiveView streams were not implemented. Changed to use @packets which is the correct assign. --- lib/aprsme_web/live/map_live/index.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/aprsme_web/live/map_live/index.ex b/lib/aprsme_web/live/map_live/index.ex index dc0b9f3..55302d7 100644 --- a/lib/aprsme_web/live/map_live/index.ex +++ b/lib/aprsme_web/live/map_live/index.ex @@ -1015,7 +1015,7 @@ defmodule AprsmeWeb.MapLive.Index do slideover_open={@slideover_open} loading={@loading} connection_status={@connection_status} - packets={@streams.packets} + packets={@packets} show_all_packets={@show_all_packets} tracked_callsign={@tracked_callsign} tracked_callsign_latest_packet={@tracked_callsign_latest_packet}