(event: React.FormEvent)
| 42 | } = useMutation(createTwitterThread); |
| 43 | |
| 44 | async function makeThread(event: React.FormEvent) { |
| 45 | event.preventDefault(); |
| 46 | |
| 47 | if (url) { |
| 48 | await mutateAsync({ url, tweetCount }); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | return ( |
| 53 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected