Skip to content

Commit

Permalink
fix: default autologin to false
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed Jan 8, 2024
1 parent 77d4389 commit eb07280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/auth/signin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export default Signin
export async function getServerSideProps(context) {
const providers = await getProviders()
const csrfToken = await getCsrfToken(context)
const autoLoginFirstProvider = process.env.AUTOLOGIN_FIRST_PROVIDER
const autoLoginFirstProvider = process.env.AUTOLOGIN_FIRST_PROVIDER ?? false

return {
props: {
Expand Down

1 comment on commit eb07280

@vercel
Copy link

@vercel vercel bot commented on eb07280 Jan 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.