()
| 1149 | }; |
| 1150 | |
| 1151 | const open = () => { |
| 1152 | overlay.style.display = ''; |
| 1153 | loadRecipes(); |
| 1154 | setTimeout(() => { |
| 1155 | updateScopeSummary(); |
| 1156 | scrollLogToBottom(); |
| 1157 | inputEl?.focus(); |
| 1158 | }, 30); |
| 1159 | }; |
| 1160 | |
| 1161 | const close = () => { |
| 1162 | overlay.style.display = 'none'; |
nothing calls this directly
no test coverage detected