File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 523523 justify-content : end ;
524524 align-items : center ;
525525 flex-wrap : wrap ;
526- gap : 6px ;
526+ gap : 0 6px ;
527527
528528 .chat-message-usage {
529529 display : flex ;
Original file line number Diff line number Diff line change @@ -583,9 +583,6 @@ function _Chat() {
583583 const isStreaming = session . messages . some ( ( m ) => m . streaming ) ;
584584
585585 const [ showExport , setShowExport ] = useState ( false ) ;
586- const [ engineStat , setEngineStats ] = useState < ReactElement | undefined > (
587- undefined ,
588- ) ;
589586
590587 const inputRef = useRef < HTMLTextAreaElement > ( null ) ;
591588 const [ userInput , setUserInput ] = useState ( "" ) ;
@@ -1334,9 +1331,11 @@ function _Chat() {
13341331 </ div >
13351332 </ >
13361333 ) }
1337- { isContext
1338- ? Locale . Chat . IsContext
1339- : message . date . toLocaleString ( ) }
1334+ < div >
1335+ { isContext
1336+ ? Locale . Chat . IsContext
1337+ : message . date . toLocaleString ( ) }
1338+ </ div >
13401339 </ div >
13411340 </ div >
13421341 </ div >
You can’t perform that action at this time.
0 commit comments