Skip to content

Commit 239dbfb

Browse files
authored
Merge pull request #10 from auth0-samples/chore/version
Updated auth0-acul-sdk version to latest release
2 parents 143e99e + 007ae78 commit 239dbfb

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.0.1-beta.1",
13+
"@auth0/auth0-acul-js": "^0.1.0-beta.1",
1414
"react": "^18.3.1",
1515
"react-dom": "^18.3.1",
1616
"react-error-boundary": "^4.1.2"

src/screens/Signup/hooks/useSignupManager.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import { useState } from 'react';
22
import LoginInstance from "@auth0/auth0-acul-js/signup";
3+
import { withWindowDebug } from "../../../utils";
34

45
export const useSignupManager = () => {
56
const [signupManager] = useState(() => new LoginInstance());
7+
withWindowDebug(signupManager, 'signup')
68

79
const handleSignup = (username: string, email: string, phoneNumber: string, password: string, captcha: string): void => {
810
const options = {

0 commit comments

Comments
 (0)