()
| 27 | const [isVisible, setIsVisible] = useState(false); |
| 28 | |
| 29 | function closeAlert() { |
| 30 | setAlerted(); |
| 31 | setIsVisible(false); |
| 32 | } |
| 33 | |
| 34 | // We poll the canister periodically to determine if `isDropDay` has changed |
| 35 | function pollIsDropDay() { |
nothing calls this directly
no test coverage detected