From ad8e09d188f0504e8ce221d56b7910a3ee0894de Mon Sep 17 00:00:00 2001 From: Leedom <30711792+leedom92@users.noreply.github.com> Date: Sun, 2 Apr 2023 02:54:46 +0800 Subject: [PATCH] Update home.tsx --- app/components/home.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/components/home.tsx b/app/components/home.tsx index 01f148989..eed821e9f 100644 --- a/app/components/home.tsx +++ b/app/components/home.tsx @@ -110,7 +110,7 @@ export function ChatList() { state.currentSessionIndex, state.selectSession, state.removeSession, - ], + ] ); return ( @@ -210,7 +210,7 @@ export function Chat(props: { setPromptHints(promptStore.search(text)); }, 100, - { leading: true, trailing: true }, + { leading: true, trailing: true } ); const onPromptSelect = (prompt: Prompt) => { @@ -224,7 +224,7 @@ export function Chat(props: { if (!dom) return; const paddingBottomNum: number = parseInt( window.getComputedStyle(dom).paddingBottom, - 10, + 10 ); dom.scrollTop = dom.scrollHeight - dom.offsetHeight + paddingBottomNum; }; @@ -320,7 +320,7 @@ export function Chat(props: { preview: true, }, ] - : [], + : [] ) .concat( userInput.length > 0 @@ -332,7 +332,7 @@ export function Chat(props: { preview: true, }, ] - : [], + : [] ); // auto scroll @@ -370,7 +370,7 @@ export function Chat(props: { const newTopic = prompt(Locale.Chat.Rename, session.topic); if (newTopic && newTopic !== session.topic) { chatStore.updateCurrentSession( - (session) => (session.topic = newTopic!), + (session) => (session.topic = newTopic!) ); } }} @@ -618,7 +618,7 @@ export function Home() { (state) => [ state.newSession, state.currentSessionIndex, - state.removeSession, + state.removeSession ], ); const loading = !useHasHydrated();