| 3 | import { useI18n } from '../context/I18nContext'; |
| 4 | |
| 5 | interface UsernameModalProps { |
| 6 | isOpen: boolean; |
| 7 | onSubmit: (username: string) => Promise<void>; |
| 8 | } |
| 9 | |
| 10 | export const UsernameModal: React.FC<UsernameModalProps> = ({ isOpen, onSubmit }) => { |
| 11 | const { t } = useI18n(); |
nothing calls this directly
no outgoing calls
no test coverage detected