File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
examples/react-chatbot/components/AIStateIndicator Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 55 --aicr__text-primary : var (--ai-demo-text-primary );
66 --aicr__text-secondary : var (--ai-demo-text-secondary );
77}
8+
9+ .aicr__state-indicator__content {
10+ background-color : var (--ai-demo-bg-tertiary );
11+ }
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export const AIStateIndicator = () => {
1212 const { channel } = useChannelStateContext ( ) ;
1313 const { aiState } = useAIState ( channel ) ;
1414
15- if ( ! [ AIStates . Generating , AIStates . Thinking ] . includes ( aiState ) ) return null ;
15+ // if (![AIStates.Generating, AIStates.Thinking].includes(aiState)) return null;
1616
1717 return < StateIndicator key = { channel . state . last_message_at ?. toString ( ) } /> ;
1818} ;
You can’t perform that action at this time.
0 commit comments