| 2 | import { Metadata, Player } from '../screens/Game'; |
| 3 | |
| 4 | interface UserAvatarProps { |
| 5 | gameMetadata: Metadata | null; |
| 6 | self?: boolean; |
| 7 | } |
| 8 | |
| 9 | export const UserAvatar = ({ gameMetadata, self }: UserAvatarProps) => { |
| 10 | const user = useUser(); |
nothing calls this directly
no outgoing calls
no test coverage detected