@insforge/react 1.0.2-dev.16 → 1.0.2-dev.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -659,6 +659,7 @@ var InsforgeManager = class _InsforgeManager {
659
659
  email,
660
660
  password
661
661
  });
662
+ console.log("sdkResult", sdkResult);
662
663
  if (sdkResult.data) {
663
664
  await this.handleAuthSuccess(
664
665
  sdkResult.data.accessToken || "",
@@ -4165,6 +4166,7 @@ function SignIn({ onError, ...uiProps }) {
4165
4166
  setError("");
4166
4167
  try {
4167
4168
  const result = await signIn(email, password);
4169
+ console.log("result", result);
4168
4170
  if ("error" in result) {
4169
4171
  if (result.statusCode === 403) {
4170
4172
  setStep("awaiting-verification");