/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; import { Box, Text } from 'ink'; import { Colors } from '../../colors.js'; import { useKeypress } from '../../hooks/useKeypress.js'; interface SkipExitStepProps { onDismiss: () => void; isFocused?: boolean; } export const SkipExitStep: React.FC = ({ onDismiss, isFocused = true, }) => { useKeypress( (key) => { if (key.name === 'return') { onDismiss(); } }, { isActive: isFocused }, ); return ( Setup skipped To configure llxprt manually: • Use /auth <provider> to set up authentication • Use /provider to select your AI provider • Type /help for more commands Press Enter to continue... ); };