From 971a2746959d5a3df22b40243dec24d4c7d85fbc Mon Sep 17 00:00:00 2001 From: mattcasey Date: Tue, 25 Feb 2025 16:07:11 -0700 Subject: [PATCH] hide banner for block dag --- components/common/PageLayout/PageLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/common/PageLayout/PageLayout.tsx b/components/common/PageLayout/PageLayout.tsx index 0d3f047100..cdea191d8d 100644 --- a/components/common/PageLayout/PageLayout.tsx +++ b/components/common/PageLayout/PageLayout.tsx @@ -31,7 +31,7 @@ interface PageLayoutProps { children: ReactNode; } -const whitelistedDomains = ['ef', 'ethrangers']; +const whitelistedDomains = ['ef', 'ethrangers', 'blockdag-grants']; function PageLayout({ children }: PageLayoutProps) { const { user, isLoaded: isUserLoaded } = useUser();