Skip to content

Commit

Permalink
fix(appellate): Cleans up processAttachmentPage by removing debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
ERosendo committed May 27, 2024
1 parent 40d884d commit e69c2a0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/appellate/appellate.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,18 @@ AppellateDelegate.prototype.handleAcmsAttachmentPage = async function () {
JSON.stringify(requestBody),
'ACMS_ATTACHMENT_PAGE',
(ok) => {
console.log('in cb');
if (ok) {
console.log('cb success');
history.replaceState({ uploaded: true }, '');
this.notifier.showUpload(
'Attachment page uploaded to the public RECAP Archive.',
() => {}
);
} else {
console.log('cb fail');
}else {
this.notifier.showUpload(
'Error: The Attachment page was not uploaded to the public' +
'RECAP Archive',
() => {}
);
}
}
);
Expand Down

0 comments on commit e69c2a0

Please sign in to comment.