()
| 8366 | |
| 8367 | isThumbnailDialogShowing = true; // Set flag before showing dialog |
| 8368 | // Ask for user confirmation |
| 8369 | const userChoice = await window.electron.showMessage( |
| 8370 | 'Generate Missing Thumbnails', |
| 8371 | `${modelsWithoutThumbs.length} models are missing thumbnails. Would you like to generate them now?`, |
| 8372 | ['Yes', 'No'] |
| 8373 | ); |
| 8374 | |
| 8375 | if (userChoice === 'Yes') { |
no outgoing calls
no test coverage detected