diff --git a/package.json b/package.json index aa00e2e..35f722f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "next-auth-sanity", "description": "NextAuth Adapter for Sanity", - "version": "1.2.0", + "version": "1.2.1", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { diff --git a/src/adapter.ts b/src/adapter.ts index 7a7acbe..1fcdfba 100644 --- a/src/adapter.ts +++ b/src/adapter.ts @@ -7,8 +7,7 @@ import { } from './queries'; import LRU from 'lru-cache'; import { SanityClient } from '@sanity/client'; -import {uuid} from '@sanity/uuid' - +import { uuid } from '@sanity/uuid'; type Options = { client: SanityClient; diff --git a/src/credentials.ts b/src/credentials.ts index 846fb6e..f5d3cd7 100644 --- a/src/credentials.ts +++ b/src/credentials.ts @@ -3,7 +3,7 @@ import { SanityClient } from '@sanity/client'; import { getUserByEmailQuery } from './queries'; import argon2 from 'argon2'; import { IncomingMessage, ServerResponse } from 'node:http'; -import {uuid} from '@sanity/uuid' +import { uuid } from '@sanity/uuid'; interface Options { client: SanityClient; }