import { Box, Text } from "ink" import { claudeEnvironmentUnsetCommands, type ClaudeEnvironmentDraft, type ShellKind } from "../claude-env" export function ClaudeEnvironmentUnsetConfirm(props: { draft: ClaudeEnvironmentDraft; shell: ShellKind; settingsTarget: string }) { return ( ──────────────────────────────────────────────────────────────────────────── Confirm unset Claude environment Enter/y apply · n/Esc cancel {claudeEnvironmentUnsetCommands(props.draft, props.shell).map((line) => ( {line} ))} Remove these keys from {props.settingsTarget} env? Press Enter or y to save · n or Esc to cancel. ) }