diff options
| author | Gaurav <[email protected]> | 2025-07-11 14:08:49 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-11 21:08:49 +0000 |
| commit | 764809753ad85ecc209aa9b126efbb3390c03274 (patch) | |
| tree | 09042251c458333eec911e0c54f8bcfd163eac95 /packages/cli/src/gemini.tsx | |
| parent | a071f604e3880d288304e338bebfa442d729f861 (diff) | |
fix: `TypeError: Cannot read properties of undefined (reading 'authType')` (#3914)
Diffstat (limited to 'packages/cli/src/gemini.tsx')
| -rw-r--r-- | packages/cli/src/gemini.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/gemini.tsx b/packages/cli/src/gemini.tsx index 74091874..3c0b151b 100644 --- a/packages/cli/src/gemini.tsx +++ b/packages/cli/src/gemini.tsx @@ -215,7 +215,7 @@ export async function main() { 'event.timestamp': new Date().toISOString(), prompt: input, prompt_id, - auth_type: config.getContentGeneratorConfig().authType!, + auth_type: config.getContentGeneratorConfig()?.authType, prompt_length: input.length, }); |
