diff options
Diffstat (limited to 'packages/cli/src/ui/components/AboutBox.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/AboutBox.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/AboutBox.tsx b/packages/cli/src/ui/components/AboutBox.tsx index 71afbdd4..a0954576 100644 --- a/packages/cli/src/ui/components/AboutBox.tsx +++ b/packages/cli/src/ui/components/AboutBox.tsx @@ -16,6 +16,7 @@ interface AboutBoxProps { modelVersion: string; selectedAuthType: string; gcpProject: string; + ideClient: string; } export const AboutBox: React.FC<AboutBoxProps> = ({ @@ -25,6 +26,7 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ modelVersion, selectedAuthType, gcpProject, + ideClient, }) => ( <Box borderStyle="round" @@ -115,5 +117,17 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> </Box> )} + {ideClient && ( + <Box flexDirection="row"> + <Box width="35%"> + <Text bold color={Colors.LightBlue}> + IDE Client + </Text> + </Box> + <Box> + <Text>{ideClient}</Text> + </Box> + </Box> + )} </Box> ); |
