summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/hooks
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/hooks')
-rw-r--r--packages/cli/src/ui/hooks/useStdin.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/cli/src/ui/hooks/useStdin.ts b/packages/cli/src/ui/hooks/useStdin.ts
index e91b90e6..dc245254 100644
--- a/packages/cli/src/ui/hooks/useStdin.ts
+++ b/packages/cli/src/ui/hooks/useStdin.ts
@@ -70,13 +70,13 @@ export function usePipedInput(): PipedInputState {
stdin.removeListener('error', handleError);
stdin.removeListener('end', handleEnd);
};
- } else {
- // No piped input (running interactively)
- setIsLoading(false);
- // Optionally set an 'info' state or just let isLoading=false & isPiped=false suffice
- // setError('No piped input detected.'); // Maybe don't treat this as an 'error'
}
+ // No piped input (running interactively)
+ setIsLoading(false);
+ // Optionally set an 'info' state or just let isLoading=false & isPiped=false suffice
+ // setError('No piped input detected.'); // Maybe don't treat this as an 'error'
+
// Intentionally run only once on mount or when stdin theoretically changes
}, [stdin, isRawModeSupported, setRawMode /*, exit */]);