Skip to content

Commit 833d1f8

Browse files
committed
chore: adjust styling
1 parent 555b464 commit 833d1f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)