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 () => {