diff options
| author | anj-s <[email protected]> | 2025-06-25 18:59:13 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-26 01:59:13 +0000 |
| commit | 1078a546feb047122dfb6354b47e4db71acea8ac (patch) | |
| tree | 10a2dca70c35b3fc2c924df5841438352ff69369 /packages/cli/src/ui/components/AuthDialog.tsx | |
| parent | a8763abfb7eeb91bc48445a5e0a24ab0532a714d (diff) | |
Fix doc link in the auth dialog (#1688)
Diffstat (limited to 'packages/cli/src/ui/components/AuthDialog.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/AuthDialog.tsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/packages/cli/src/ui/components/AuthDialog.tsx b/packages/cli/src/ui/components/AuthDialog.tsx index f8ddfaed..ce8e25e0 100644 --- a/packages/cli/src/ui/components/AuthDialog.tsx +++ b/packages/cli/src/ui/components/AuthDialog.tsx @@ -6,7 +6,6 @@ import React, { useState } from 'react'; import { Box, Text, useInput } from 'ink'; -import Link from 'ink-link'; import { Colors } from '../colors.js'; import { RadioButtonSelect } from './shared/RadioButtonSelect.js'; import { LoadedSettings, SettingScope } from '../../config/settings.js'; @@ -94,9 +93,14 @@ export function AuthDialog({ <Text color={Colors.Gray}>(Use Enter to select)</Text> </Box> <Box marginTop={1}> - <Link url="https://github.com/google/gemini-cli/blob/main/docs/tos-privacy.md"> - <Text>Terms of Services and Privacy Notice for Gemini CLI</Text> - </Link> + <Text>Terms of Services and Privacy Notice for Gemini CLI</Text> + </Box> + <Box marginTop={1}> + <Text color={Colors.AccentBlue}> + { + 'https://github.com/google-gemini/gemini-cli/blob/main/docs/tos-privacy.md' + } + </Text> </Box> </Box> ); |
