Skip to content

Commit

Permalink
Merge pull request #41 from diggerhq/fix/terms-param
Browse files Browse the repository at this point in the history
Default to accepted terms
  • Loading branch information
ZIJ authored Sep 11, 2024
2 parents 850b9ee + 294ef21 commit 5024933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/zod-schemas/authUserMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { z } from 'zod';

export const authUserMetadataSchema = z
.object({
onboardingHasAcceptedTerms: z.boolean().default(false),
onboardingHasAcceptedTerms: z.boolean().default(true),
onboardingHasCompletedProfile: z.boolean().default(false),
onboardingHasCreatedOrganization: z.boolean().default(false),
})
Expand Down

0 comments on commit 5024933

Please sign in to comment.