(index: number)
| 457 | } |
| 458 | |
| 459 | function delete_notification(index: number) { |
| 460 | set_notification((p) => { |
| 461 | let n = Array.from(p); |
| 462 | delete n[index]; |
| 463 | return n; |
| 464 | }); |
| 465 | } |
| 466 | |
| 467 | function on_email_configuration_click() { |
| 468 | set_popup(EmailConfigurator({ |
no test coverage detected