chore: cleanup, a11y and state migrations

This commit is contained in:
Alejandro Gómez
2025-12-14 16:32:45 +01:00
parent f2ffc406d5
commit e5c871617e
35 changed files with 1658 additions and 225 deletions

View File

@@ -335,7 +335,12 @@ function useDynamicTitle(window: WindowInstance): WindowTitleData {
// 8. Generic Tags - NEW (a-z, A-Z filters excluding e, p, t, d)
const genericTags = Object.entries(filter)
.filter(([key]) => key.startsWith("#") && key.length === 2 && !["#e", "#p", "#t", "#d"].includes(key))
.filter(
([key]) =>
key.startsWith("#") &&
key.length === 2 &&
!["#e", "#p", "#t", "#d"].includes(key),
)
.map(([key, values]) => ({ letter: key[1], values: values as string[] }));
if (genericTags.length > 0) {