Remove goofy new app screen

This commit is contained in:
DominicJamesWhite 2025-04-09 21:38:26 +02:00
parent 6a75ce476d
commit a2d381b069

View File

@ -346,12 +346,9 @@ export function SideBar(props: { className?: string }) {
icon={<AddIcon />} icon={<AddIcon />}
text={shouldNarrow ? undefined : Locale.Home.NewChat} text={shouldNarrow ? undefined : Locale.Home.NewChat}
onClick={() => { onClick={() => {
if (config.dontShowMaskSplashScreen) { // Always navigate directly to chat
chatStore.newSession(); chatStore.newSession();
navigate(Path.Chat); navigate(Path.Chat);
} else {
navigate(Path.NewChat);
}
}} }}
shadow shadow
/> />