diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 73acde9..0a06b46 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1661,6 +1661,8 @@ export default function App() { }; applyAwardRefs(payload, details.award_refs ?? '', awardFieldRef.current); await AddQSO(payload); + // Same green toast as a QSL upload, so the op gets visual confirmation. + showToast(`QSO logged — ${payload.callsign}${band ? ` · ${band}` : ''}${mode ? ` ${mode}` : ''}`); resetEntry(); // clears the call AND the Worked-before matrix callsignRef.current?.focus(); // return focus to the call field, wherever it was (e.g. Name) await refresh();