Skip to content

Commit

Permalink
fix removed schemas from example
Browse files Browse the repository at this point in the history
  • Loading branch information
fedeya committed Apr 16, 2022
1 parent 943e153 commit 98e2b9e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions examples/full-example/src/pages/api/auth/[...nextauth].ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,7 @@ const options: NextAuthOptions = {
strategy: 'jwt'
},
secret: 'any-secret-word',
adapter: SanityAdapter(client, {
schemas: {
verificationToken: 'verificationToken',
account: 'account',
user: 'user'
}
})
adapter: SanityAdapter(client)
};

export default NextAuth(options);

0 comments on commit 98e2b9e

Please sign in to comment.