Yogeshwar
Astro
const {userId} = useSessionContext();
DEFAULT_USER_ID
mrserif
The Silent Memer....
| ERROR | pid: cbf2ff35-f505-4059-b612-ce85dd43a15a | [http-nio-0.0.0.0-3567-exec-1] thread | io.supertokens.webserver.api.core.NotFoundAPI.service(NotFoundAPI.java:44) |
tajin_malsou9a
EmailPasswordSignUp_Override: ({ DefaultComponent, ...props }) => { /* if the user visits the /signup route, we want to show the default implementation. If thy visit the /signin?show=signup route, we want to show the sign in UI, so we redirect them to /signin which shows the sign in UI. */ const [showUI, setShowUI] = useState(false); useEffect(() => { if (window.location.pathname === "/signup") { setShowUI(true); } else if (window.location.pathname === "/signin") { window.location.href = "/signin"; } else { setShowUI(true); } }, []); if (showUI) { return <DefaultComponent {...props} />; } else { return null; } },
Idriz
Deleted User
pepegc
angeluuuu
zach_h9554
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).