summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/LoadingIndicator.tsx
diff options
context:
space:
mode:
authorJacob Richman <[email protected]>2025-05-28 19:46:08 +0000
committerGitHub <[email protected]>2025-05-28 12:46:08 -0700
commit00805cb2cdd9786451b9a3a6746f11f47535288d (patch)
treed8cfed9d765c826805fb839e37c2d08b42446e2b /packages/cli/src/ui/components/LoadingIndicator.tsx
parent05a49702d888bee912682f78c3993d98f7f9d628 (diff)
Cleanup: Remove low value StreamingContextType interface. (#585)
Diffstat (limited to 'packages/cli/src/ui/components/LoadingIndicator.tsx')
-rw-r--r--packages/cli/src/ui/components/LoadingIndicator.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/components/LoadingIndicator.tsx b/packages/cli/src/ui/components/LoadingIndicator.tsx
index c3865f3e..31c6fee9 100644
--- a/packages/cli/src/ui/components/LoadingIndicator.tsx
+++ b/packages/cli/src/ui/components/LoadingIndicator.tsx
@@ -22,7 +22,7 @@ export const LoadingIndicator: React.FC<LoadingIndicatorProps> = ({
elapsedTime,
rightContent,
}) => {
- const { streamingState } = useStreamingContext();
+ const streamingState = useStreamingContext();
if (streamingState === StreamingState.Idle) {
return null;