fix the coachId on ContactCoach

This commit is contained in:
Andreas Zweili 2021-07-28 15:34:17 +02:00
parent e3d48145d3
commit ab93dd6f6b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ export default {
this.$store.dispatch('requests/contactCoach', {
email: this.email,
message: this.message,
coachId: this.$route.id
coachId: this.$route.params.id
});
this.$router.replace('/coaches');
}