Skip to content

Commit 1eb7dc3

Browse files
committed
Bumping up auth0-acul-js version
1 parent 306351e commit 1eb7dc3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@auth0/auth0-acul-js": "^0.1.0-beta.2",
13+
"@auth0/auth0-acul-js": "^0.1.0-beta.3",
1414
"react": "^18.3.1",
1515
"react-dom": "^18.3.1",
1616
"react-error-boundary": "^4.1.2"

src/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const ResetPasswordMfaOtpChallengeScreen = React.lazy(() => import("./screens/re
3434
const OrganizationSelectionScreen = React.lazy(() => import("./screens/organization-selection"));
3535
const OrganizationPickerScreen = React.lazy(() => import("./screens/organization-picker"));
3636
const AcceptInvitationScreen = React.lazy(() => import("./screens/accept-invitation"));
37-
const CustomizedConsentScreen = React.lazy(() => import("./screens/customized-consent"));
37+
// const CustomizedConsentScreen = React.lazy(() => import("./screens/customized-consent"));
3838

3939

4040
const App: React.FC = () => {
@@ -112,8 +112,8 @@ const App: React.FC = () => {
112112
return <OrganizationPickerScreen />;
113113
case "accept-invitation":
114114
return <AcceptInvitationScreen />;
115-
case "customized-consent":
116-
return <CustomizedConsentScreen />;
115+
// case "customized-consent":
116+
// return <CustomizedConsentScreen />;
117117
default:
118118
return <>No screen rendered</>;
119119
}

0 commit comments

Comments
 (0)