From 501ad2ab45c651d03e9f559becedb2d49148ea20 Mon Sep 17 00:00:00 2001 From: tehw0lf Date: Sat, 27 Jun 2026 22:59:34 +0200 Subject: [PATCH] fix(a11y): replace root div with main landmark element --- src/App.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e723a0a..9721407 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -260,16 +260,16 @@ export default function App() { if (!loaded) { return ( -
+
-
+
); } return ( -
+
@@ -450,6 +450,6 @@ export default function App() {
- + ); }