diff --git a/src/lib/render/Chat.tsx b/src/lib/render/Chat.tsx index 65092aee..5ee1eafc 100644 --- a/src/lib/render/Chat.tsx +++ b/src/lib/render/Chat.tsx @@ -1,16 +1,18 @@ -import React from "react"; +import React, { StrictMode } from "react"; import { ConfigProvider, type Config } from "../../contexts/config-context.tsx"; import { ChatWithSideBar } from "./ChatWithSideBar.tsx"; import { ChatWithOutSideBar } from "./ChatWithoutSideBar.tsx"; export const Chat: React.FC = (config) => { return ( - - {config.host === "web" || config.dev ? ( - - ) : ( - - )} - + + + {config.host === "web" || config.dev ? ( + + ) : ( + + )} + + ); };