From 619b27103bec951d2f12fde22d46326dda1fe0bb Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sat, 28 Mar 2026 00:51:29 -0700 Subject: [PATCH] fix(web): add id=main-content to main element for skip-link target --- web/src/app/(app)/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app/(app)/layout.tsx b/web/src/app/(app)/layout.tsx index 376878d..b5b3fd7 100644 --- a/web/src/app/(app)/layout.tsx +++ b/web/src/app/(app)/layout.tsx @@ -5,7 +5,7 @@ export default function ProductLayout({ children }: { children: ReactNode }) { return ( <> -
{children}
+
{children}
); }