From 6622b496340a81b2cae1b64668879c5c5f46e3a6 Mon Sep 17 00:00:00 2001 From: Erica Pisani Date: Tue, 26 Apr 2022 11:50:12 -0400 Subject: [PATCH] fix: specify version of next-auth When using the 'latest' tag, v3 of next-auth was being installed. However, the type definitions used in the example project aren't introduced until v4. Pinning to v4 in order to ensure expected behaviour --- demos/next-auth/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/next-auth/package.json b/demos/next-auth/package.json index 7e7bac3f43..21c0308469 100644 --- a/demos/next-auth/package.json +++ b/demos/next-auth/package.json @@ -23,7 +23,7 @@ ], "license": "ISC", "dependencies": { - "next-auth": "latest", + "next-auth": "^4.3.3", "nodemailer": "^6.6.3", "react": "^17.0.2", "react-dom": "^17.0.2"