Skip to content

Commit 88835d5

Browse files
committed
error corrected
1 parent 2273904 commit 88835d5

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/scripts/scrumHelper.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -566,16 +566,10 @@ function allIncluded(outputTarget = 'email') {
566566
// For popup context, immediately process the data
567567
if (outputTarget === 'popup') {
568568
log('Processing data for popup context');
569-
if (githubIssuesData) {
570-
log('Calling writeGithubIssuesPrs');
571-
writeGithubIssuesPrs();
572-
} else {
569+
if (!githubIssuesData) {
573570
logError('No githubIssuesData available for popup processing');
574571
}
575-
if (githubPrsReviewData) {
576-
log('Calling writeGithubPrsReviews');
577-
writeGithubPrsReviews();
578-
} else {
572+
if (!githubPrsReviewData) {
579573
logError('No githubPrsReviewData available for popup processing');
580574
}
581575
} else {

0 commit comments

Comments
 (0)