Cleanup: Remove low value StreamingContextType interface. (#585)

This commit is contained in:
Jacob Richman
2025-05-28 19:46:08 +00:00
committed by GitHub
parent 05a49702d8
commit 00805cb2cd
6 changed files with 15 additions and 41 deletions

View File

@@ -22,7 +22,7 @@ export const LoadingIndicator: React.FC<LoadingIndicatorProps> = ({
elapsedTime,
rightContent,
}) => {
const { streamingState } = useStreamingContext();
const streamingState = useStreamingContext();
if (streamingState === StreamingState.Idle) {
return null;