From 1630c8fdf462930affefad40737edc98d0f00dff Mon Sep 17 00:00:00 2001 From: rouggy Date: Tue, 21 Jul 2026 10:08:11 +0200 Subject: [PATCH] feat: include band in the self-spot toast (Spotted by X on 20m with ...) --- frontend/src/App.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index f988ad8..40e4506 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1939,7 +1939,8 @@ export default function App() { if (mine && (sp.dx_call ?? '').toUpperCase() === mine) { const by = cleanSpotter(sp.spotter ?? '') || '?'; const c = (sp.comment ?? '').trim(); - showToast(`Spotted by ${by}${c ? ` with ${c}` : ''}`); + const bnd = (sp.band ?? '').trim(); + showToast(`Spotted by ${by}${bnd ? ` on ${bnd}` : ''}${c ? ` with ${c}` : ''}`); } }); return () => {