()
| 110 | } |
| 111 | |
| 112 | const saveCustom = () => { |
| 113 | const cur = state() |
| 114 | const next = questionSave(cur, props.request) |
| 115 | if (next.state !== cur) { |
| 116 | setState(next.state) |
| 117 | } |
| 118 | |
| 119 | if (!next.reply) { |
| 120 | return |
| 121 | } |
| 122 | |
| 123 | void beginReply(next.reply) |
| 124 | } |
| 125 | |
| 126 | const choose = (selected: number) => { |
| 127 | const base = state() |
nothing calls this directly
no test coverage detected