@@ -248,15 +248,6 @@ export class ProcessingHelper {
248
248
if ( ! screenshotQueue || screenshotQueue . length === 0 ) {
249
249
console . log ( "No screenshots found in queue" ) ;
250
250
mainWindow . webContents . send ( this . deps . PROCESSING_EVENTS . NO_SCREENSHOTS ) ;
251
-
252
- // Show dialog if no screenshots
253
- dialog . showMessageBox ( mainWindow , {
254
- type : 'info' ,
255
- title : 'No Screenshots Detected' ,
256
- message : 'No screenshots were found to process.' ,
257
- detail : 'Please take a screenshot first using Ctrl+H (or Cmd+H on Mac). Make sure your screenshot contains the coding problem you want to solve.' ,
258
- buttons : [ 'OK' ]
259
- } ) ;
260
251
return ;
261
252
}
262
253
@@ -265,15 +256,6 @@ export class ProcessingHelper {
265
256
if ( existingScreenshots . length === 0 ) {
266
257
console . log ( "Screenshot files don't exist on disk" ) ;
267
258
mainWindow . webContents . send ( this . deps . PROCESSING_EVENTS . NO_SCREENSHOTS ) ;
268
-
269
- // Show error dialog
270
- dialog . showMessageBox ( mainWindow , {
271
- type : 'warning' ,
272
- title : 'Screenshot Files Missing' ,
273
- message : 'The screenshot files were not found on disk.' ,
274
- detail : 'Try taking a new screenshot with Ctrl+H (or Cmd+H on Mac).' ,
275
- buttons : [ 'OK' ]
276
- } ) ;
277
259
return ;
278
260
}
279
261
@@ -365,14 +347,6 @@ export class ProcessingHelper {
365
347
console . log ( "No extra screenshots found in queue" ) ;
366
348
mainWindow . webContents . send ( this . deps . PROCESSING_EVENTS . NO_SCREENSHOTS ) ;
367
349
368
- // Show dialog if no screenshots
369
- dialog . showMessageBox ( mainWindow , {
370
- type : 'info' ,
371
- title : 'No Debug Screenshots' ,
372
- message : 'No screenshots were found for debugging.' ,
373
- detail : 'Please take screenshots of your code/errors with Ctrl+H before debugging.' ,
374
- buttons : [ 'OK' ]
375
- } ) ;
376
350
return ;
377
351
}
378
352
@@ -381,14 +355,6 @@ export class ProcessingHelper {
381
355
if ( existingExtraScreenshots . length === 0 ) {
382
356
console . log ( "Extra screenshot files don't exist on disk" ) ;
383
357
mainWindow . webContents . send ( this . deps . PROCESSING_EVENTS . NO_SCREENSHOTS ) ;
384
-
385
- dialog . showMessageBox ( mainWindow , {
386
- type : 'warning' ,
387
- title : 'Screenshot Files Missing' ,
388
- message : 'The debug screenshot files were not found.' ,
389
- detail : 'Try taking a new screenshot with Ctrl+H (or Cmd+H on Mac).' ,
390
- buttons : [ 'OK' ]
391
- } ) ;
392
358
return ;
393
359
}
394
360
0 commit comments