fix misspelling

This commit is contained in:
Moriz Wahl 2021-09-23 11:56:12 +02:00
parent 1be5dd50b6
commit 95a667046b
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ export const updateUserInfos = gql`
}
`
export const resgisterUser = gql`
export const registerUser = gql`
mutation(
$firstName: String!
$lastName: String!

View File

@ -141,7 +141,7 @@
import InputEmail from '../../components/Inputs/InputEmail.vue'
import InputPasswordConfirmation from '../../components/Inputs/InputPasswordConfirmation.vue'
import LanguageSwitchSelect from '../../components/LanguageSwitchSelect.vue'
import { resgisterUser } from '../../graphql/mutations'
import { registerUser } from '../../graphql/mutations'
export default {
components: { InputPasswordConfirmation, InputEmail, LanguageSwitchSelect },
@ -191,7 +191,7 @@ export default {
async onSubmit() {
this.$apollo
.mutate({
mutation: resgisterUser,
mutation: registerUser,
variables: {
email: this.form.email,
firstName: this.form.firstname,