feat: Redux-Integration für Meldungen, Anzeige von 'v' statt 's' in UI

This commit is contained in:
ISA
2025-06-30 08:59:48 +02:00
parent 2a9bebb4bc
commit 62de915485
19 changed files with 1647 additions and 1104 deletions

View File

@@ -20,7 +20,10 @@ export const fetchLast20MessagesFromWindow = async (): Promise<
document.body.appendChild(script);
});
const raw = (window as any).win_last20Messages;
interface WindowWithLast20Messages extends Window {
win_last20Messages?: unknown;
}
const raw = (window as WindowWithLast20Messages).win_last20Messages;
return raw ? String(raw) : null;
};