From 939473cb7990049d0f04e75845e6b7759550115e Mon Sep 17 00:00:00 2001 From: Adrian Rocke Date: Fri, 22 Nov 2024 12:45:38 -0600 Subject: [PATCH] chore: remove chat bubble --- app/[locale]/ChatBubble.tsx | 24 ------------------------ app/[locale]/layout.tsx | 6 +----- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 app/[locale]/ChatBubble.tsx diff --git a/app/[locale]/ChatBubble.tsx b/app/[locale]/ChatBubble.tsx deleted file mode 100644 index f1ef9d3..0000000 --- a/app/[locale]/ChatBubble.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import Script from "next/script"; - -export default function ChatBubble({ placement }: { placement: 'bl' | 'br' }) { - return -} diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 3314ab8..307ac3c 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -8,7 +8,6 @@ import "../globals.css"; import { headFontClass } from "../fonts"; import languages from "../../languages.json"; import { FlashProvider } from "../flash"; -import ChatBubble from "./ChatBubble"; export async function generateMetadata(): Promise { const t = await getTranslations("RootLayout") @@ -50,10 +49,7 @@ export default function RootLayout({ {process.env.NODE_ENV === 'production' && ( - <> - - - + )}