diff --git a/app/components/home.tsx b/app/components/home.tsx index 7ed35dfbe..00ae9d0db 100644 --- a/app/components/home.tsx +++ b/app/components/home.tsx @@ -307,18 +307,19 @@ export function Chat(props: { }, ] : [], - ).concat( - userInput.length > 0 && config.sendPreviewBubble - ? [ - { - role: "user", - content: userInput, - date: new Date().toLocaleString(), - preview: false, - }, - ] - : [], - ); + ) + .concat( + userInput.length > 0 && config.sendPreviewBubble + ? [ + { + role: "user", + content: userInput, + date: new Date().toLocaleString(), + preview: false, + }, + ] + : [], + ); // auto scroll useLayoutEffect(() => { @@ -632,9 +633,7 @@ export function Home() { >