Skip to content

Commit 593aa8a

Browse files
authored
Merge pull request #85 from meza/renovate/auth0-remix-server-2.x
fix(deps): update dependency auth0-remix-server to v2
2 parents 689a55b + 2028518 commit 593aa8a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@sentry/remix": "^7.40.0",
6565
"@sentry/serverless": "^7.40.0",
6666
"@splitsoftware/splitio": "^10.22.3",
67-
"auth0-remix-server": "^1.2.3",
67+
"auth0-remix-server": "^2.0.0",
6868
"aws-cdk-lib": "^2.66.0",
6969
"constructs": "^10.1.257",
7070
"cross-env": "^7.0.3",

src/routes/auth/auth0.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ import { authenticator } from '~/auth.server';
22
import type { ActionFunction } from '@remix-run/node';
33

44
export const action: ActionFunction = () => {
5-
const forceLogin = false;
6-
authenticator.authorize(forceLogin);
5+
authenticator.authorize();
76
};

0 commit comments

Comments
 (0)