From a2d381b0699de9b92fb758a848533df645cab73c Mon Sep 17 00:00:00 2001 From: DominicJamesWhite Date: Wed, 9 Apr 2025 21:38:26 +0200 Subject: [PATCH] Remove goofy new app screen --- app/components/sidebar.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/app/components/sidebar.tsx b/app/components/sidebar.tsx index 7f24c3719..e50bc7ca4 100644 --- a/app/components/sidebar.tsx +++ b/app/components/sidebar.tsx @@ -346,12 +346,9 @@ export function SideBar(props: { className?: string }) { icon={} text={shouldNarrow ? undefined : Locale.Home.NewChat} onClick={() => { - if (config.dontShowMaskSplashScreen) { - chatStore.newSession(); - navigate(Path.Chat); - } else { - navigate(Path.NewChat); - } + // Always navigate directly to chat + chatStore.newSession(); + navigate(Path.Chat); }} shadow />