mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-05 15:31:27 +00:00
20 lines
437 B
TypeScript
20 lines
437 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
|
|
export const ITermDetectionWarning: React.FC = () => {
|
|
if (process.env.TERM_PROGRAM !== 'iTerm.app') {
|
|
return null; // Don't render anything if not in iTerm
|
|
}
|
|
|
|
return (
|
|
<Box marginTop={1}>
|
|
<Text dimColor>Note: Flickering may occur in iTerm.</Text>
|
|
</Box>
|
|
);
|
|
};
|