()
| 6 | |
| 7 | export default function AuthTestButton() { |
| 8 | const onClick = async () => { |
| 9 | const {data, error} = await testAuth(); |
| 10 | if (error) handleError(error); |
| 11 | if (data) successToast(data); |
| 12 | } |
| 13 | |
| 14 | return ( |
| 15 | <Button |
nothing calls this directly
no test coverage detected
searching dependent graphs…