diff options
Diffstat (limited to 'packages/cli/src')
| -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> ); |
