(event)
| 31 | const [isValid, setIsValid] = useState(true) |
| 32 | |
| 33 | const handleChange = (event) => { |
| 34 | const code = event.target.value |
| 35 | setActivationCode(code) |
| 36 | } |
| 37 | |
| 38 | function handleSubmit() { |
| 39 | if (Number(validTime) > dayjs().unix()) { |
nothing calls this directly
no outgoing calls
no test coverage detected