import * as React from 'react'; import { FLAG_ICON } from '../../constants/figures.js'; import { Box, Text } from '@anthropic/ink'; /** * ANT-ONLY: Banner shown in the transcript that prompts users to report * issues via /issue. Appears when friction is detected in the conversation. */ export function IssueFlagBanner(): React.ReactNode { if (process.env.USER_TYPE !== 'ant') { return null; } return ( {FLAG_ICON} [ANT-ONLY] Something off with Claude? /issue to report it ); }