Skip to content

Commit

Permalink
Do not log to console in tours js (#40101)
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo committed Mar 29, 2023
1 parent 71491f0 commit 5b7fa70
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ function addStepToTourButton(tour, stepObj, buttons) {
} else {
resolve();
}
}).catch((error) => {
console.log(`Exception error - ${error.message} - Bypass Shepherd target`);
}).catch(() => {
// Ignore
});
},
when: {
Expand Down

0 comments on commit 5b7fa70

Please sign in to comment.