| 51 | }); |
| 52 | |
| 53 | interface AuthDialogProps { |
| 54 | isOpen: boolean; |
| 55 | setIsOpen: (isOpen: boolean) => void; |
| 56 | redirectUrl?: RedirectUrl; |
| 57 | signInText?: string; |
| 58 | } |
| 59 | |
| 60 | const AuthDialog: FC<AuthDialogProps> = ({ |
| 61 | isOpen, |
nothing calls this directly
no outgoing calls
no test coverage detected