From 768531ccb22182b1721a96fbffefde7e6c50b312 Mon Sep 17 00:00:00 2001 From: Precious Oritsedere Date: Wed, 5 Nov 2025 12:37:34 +0000 Subject: [PATCH] fix: suppress hydration warning caused by browser extension --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b768c5a..e3692d2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -21,7 +21,7 @@ export const metadata: Metadata = { export default function ({ children }: LayoutProps) { return ( - {children} + {children} ); }