diff --git a/examples/full-example/src/pages/api/auth/[...nextauth].ts b/examples/full-example/src/pages/api/auth/[...nextauth].ts index 4d0b75c..64a156d 100644 --- a/examples/full-example/src/pages/api/auth/[...nextauth].ts +++ b/examples/full-example/src/pages/api/auth/[...nextauth].ts @@ -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);