Skip to content

Commit

Permalink
revert this change. it's breaking cypress
Browse files Browse the repository at this point in the history
 - probably on VM it takes to long to render (> 5 secs)
  • Loading branch information
yanfali committed May 29, 2022
1 parent a3c5d2d commit e17aaad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ControllerBottom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,8 @@ export default {
console.log('unexpected error', err);
}
},
async printKeymaps() {
await this.$router.push('/print').catch((err) => {
printKeymaps() {
this.$router.push('/print').catch((err) => {
if (isNavigationFailure(err, NavigationFailureType.duplicated)) {
return;
}
Expand All @@ -496,8 +496,8 @@ export default {
throw err;
});
},
async testKeys() {
await this.$router.push('/test').catch((err) => {
testKeys() {
this.$router.push('/test').catch((err) => {
if (isNavigationFailure(err, NavigationFailureType.duplicated)) {
return;
}
Expand Down

0 comments on commit e17aaad

Please sign in to comment.