Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.
Prev Previous commit
Next Next commit
saved again after turning off trailing commas in my prettier config
  • Loading branch information
jeffreywhitaker committed Apr 12, 2021
commit f8756c9ce22000981e54a73c020b52a32f5385d7
8 changes: 4 additions & 4 deletions src/views/Quiz/QuizCountdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,17 @@ import { Quiz, User } from "@/store";
export default {
name: "quiz",
components: {
QuizNeedHelp,
QuizNeedHelp
},
computed: {
...User.mapState(),
...Quiz.mapState(),
...Quiz.mapState()
},
methods: {
async onClick() {
await this.$store.dispatch("Quiz/markAsSeen");
this.$router.push({ name: "quiz" });
},
},
}
}
};
</script>
6 changes: 3 additions & 3 deletions src/views/Quiz/QuizFinishedFail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ import { User } from "@/store";
export default {
name: "quiz-finished-fail",
components: {
QuizScroll,
QuizScroll
},
computed: {
firstName() {
return User.firstName;
},
}
},
mounted() {},
mounted() {}
};
</script>