From 8b7c42ec9b7a83ee35c3143132a930dd36d390bd Mon Sep 17 00:00:00 2001 From: rouggy Date: Sun, 21 Jun 2026 15:14:56 +0200 Subject: [PATCH] fix: alignement of fields in QSO entry --- frontend/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) 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();