| 22 | import { Label } from '@/components/ui/label'; |
| 23 | |
| 24 | interface UsernameEditorContentProps { |
| 25 | initialUsername: string; |
| 26 | onClose: () => void; |
| 27 | prefix?: string; |
| 28 | } |
| 29 | |
| 30 | function UsernameEditorContent({ |
| 31 | initialUsername, |
nothing calls this directly
no outgoing calls
no test coverage detected