From b195dcdfd25cbc2b0c1fe575a8b78ecc0dacae0c Mon Sep 17 00:00:00 2001 From: James Grugett Date: Fri, 13 May 2022 14:33:02 -0400 Subject: [PATCH] Print build info only once --- web/pages/_app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/_app.tsx b/web/pages/_app.tsx index 0320b8cf..7fbfad16 100644 --- a/web/pages/_app.tsx +++ b/web/pages/_app.tsx @@ -26,7 +26,7 @@ function printBuildInfo() { function MyApp({ Component, pageProps }: AppProps) { usePreserveScroll() - useEffect(printBuildInfo) + useEffect(printBuildInfo, []) return ( <>