c67f6d9c92
* fix: fe2 auth error page + various minor UI bugs * clean up & reporting failing email to fe * new mutation to resend verification as guest * email text updates * fixing issues brought up by agi * more text fixes * swapping out space-XXX for gap-XXX
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
import { graphql } from '~~/lib/common/generated/gql'
|
|
|
|
export const finishOnboardingMutation = graphql(`
|
|
mutation FinishOnboarding {
|
|
activeUserMutations {
|
|
finishOnboarding
|
|
}
|
|
}
|
|
`)
|
|
|
|
export const requestVerificationByEmailMutation = graphql(`
|
|
mutation RequestVerificationByEmail($email: String!) {
|
|
requestVerificationByEmail(email: $email)
|
|
}
|
|
`)
|