Skip to content

Commit 555b464

Browse files
committed
chore: adjust styling
1 parent 83e3629 commit 555b464

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

examples/react-chatbot/components/AIStateIndicator/AIStateIndicator.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@
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+
}

examples/react-chatbot/components/AIStateIndicator/AIStateIndicator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)