We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2273904 commit 88835d5Copy full SHA for 88835d5
src/scripts/scrumHelper.js
@@ -566,16 +566,10 @@ function allIncluded(outputTarget = 'email') {
566
// For popup context, immediately process the data
567
if (outputTarget === 'popup') {
568
log('Processing data for popup context');
569
- if (githubIssuesData) {
570
- log('Calling writeGithubIssuesPrs');
571
- writeGithubIssuesPrs();
572
- } else {
+ if (!githubIssuesData) {
573
logError('No githubIssuesData available for popup processing');
574
}
575
- if (githubPrsReviewData) {
576
- log('Calling writeGithubPrsReviews');
577
- writeGithubPrsReviews();
578
+ if (!githubPrsReviewData) {
579
logError('No githubPrsReviewData available for popup processing');
580
581
} else {
0 commit comments