From 3aabb940f5b66aaed340d20bf4decfa6c40330cc Mon Sep 17 00:00:00 2001 From: Preston Holmes Date: Fri, 27 Jun 2025 08:46:27 -0700 Subject: Add the current auth method and GCP Project config to the about message (#2112) --- packages/cli/src/ui/components/AboutBox.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'packages/cli/src/ui/components/AboutBox.tsx') diff --git a/packages/cli/src/ui/components/AboutBox.tsx b/packages/cli/src/ui/components/AboutBox.tsx index 0744beff..71afbdd4 100644 --- a/packages/cli/src/ui/components/AboutBox.tsx +++ b/packages/cli/src/ui/components/AboutBox.tsx @@ -14,6 +14,8 @@ interface AboutBoxProps { osVersion: string; sandboxEnv: string; modelVersion: string; + selectedAuthType: string; + gcpProject: string; } export const AboutBox: React.FC = ({ @@ -21,6 +23,8 @@ export const AboutBox: React.FC = ({ osVersion, sandboxEnv, modelVersion, + selectedAuthType, + gcpProject, }) => ( = ({ {osVersion} + + + + Auth Method + + + + + {selectedAuthType.startsWith('oauth') ? 'OAuth' : selectedAuthType} + + + + {gcpProject && ( + + + + GCP Project + + + + {gcpProject} + + + )} ); -- cgit v1.2.3