Skip to content

Commit

Permalink
pkp/pkp-lib#7495 clean up debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jardakotesovec committed Oct 17, 2024
1 parent 065736a commit f72eca0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ export function useWorkflowNavigationConfigOMP(pageInitConfig) {
title: t('workflow.review.externalReview'),
});

console.log('internal review items:', internalReviewItems);
console.log('external review items:', externalReviewItems);

const items = [];

items.push(
Expand Down
4 changes: 0 additions & 4 deletions src/pages/workflow/workflowStoreOJS.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,6 @@ export const useWorkflowStore = defineComponentStore('workflow', (props) => {
watch(submission, (newSubmission, oldSubmission) => {
// Once the submission is fetched, select relevant stage in navigaton
if (!oldSubmission && newSubmission) {
console.log(
'navigate to menu:',
getInitialSelectionItemKey(newSubmission),
);
navigateToMenu(getInitialSelectionItemKey(newSubmission));
}
});
Expand Down
4 changes: 0 additions & 4 deletions src/pages/workflow/workflowStoreOMP.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@ export const useWorkflowStore = defineComponentStore('workflow', (props) => {
watch(submission, (newSubmission, oldSubmission) => {
// Once the submission is fetched, select relevant stage in navigaton
if (!oldSubmission && newSubmission) {
console.log(
'navigate to menu:',
getInitialSelectionItemKey(newSubmission),
);
navigateToMenu(getInitialSelectionItemKey(newSubmission));
}
});
Expand Down

0 comments on commit f72eca0

Please sign in to comment.