From a27bdf5ea2c901a898498b23b5378a121baea413 Mon Sep 17 00:00:00 2001 From: Karrix Date: Sun, 14 Jan 2024 16:51:38 +0800 Subject: [PATCH] fix: missing env key issue --- web/src/app/(app)/layout.tsx | 8 ++++---- web/src/app/(docs)/docs/layout.tsx | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/web/src/app/(app)/layout.tsx b/web/src/app/(app)/layout.tsx index 437bf5b..7995157 100644 --- a/web/src/app/(app)/layout.tsx +++ b/web/src/app/(app)/layout.tsx @@ -36,11 +36,11 @@ export default function RootLayout({ - - {process.env.PLAUSIBLE_DOMAIN && ( + {process.env.PLAUSIBLE_DOMAIN && ( + - )} - + + )}
diff --git a/web/src/app/(docs)/docs/layout.tsx b/web/src/app/(docs)/docs/layout.tsx index 540af89..4383823 100644 --- a/web/src/app/(docs)/docs/layout.tsx +++ b/web/src/app/(docs)/docs/layout.tsx @@ -29,11 +29,11 @@ export default async function RootLayout({ return ( - - {process.env.PLAUSIBLE_DOMAIN && ( + {process.env.PLAUSIBLE_DOMAIN && ( + - )} - + + )}