(text: string, tone: NoticeState["tone"] = "success")
| 76 | } |
| 77 | |
| 78 | function showNotice(text: string, tone: NoticeState["tone"] = "success") { |
| 79 | setNotice({ text, tone }); |
| 80 | } |
| 81 | |
| 82 | async function handleModeChange(nextMode: ModeName) { |
| 83 | if (!editable || nextMode === defaultMode) return; |
no outgoing calls
no test coverage detected