@loafmarkets/ui 0.1.387 → 0.1.388
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.js +4 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6784,11 +6784,8 @@ var LoginPopup = ({
|
|
|
6784
6784
|
}
|
|
6785
6785
|
return;
|
|
6786
6786
|
}
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
} else {
|
|
6790
|
-
onClose();
|
|
6791
|
-
}
|
|
6787
|
+
window.dispatchEvent(new CustomEvent("loaf:onboarding-start"));
|
|
6788
|
+
onClose();
|
|
6792
6789
|
} catch (err) {
|
|
6793
6790
|
setError(err instanceof Error ? err.message : "Couldn't complete sign up. Please try again.");
|
|
6794
6791
|
} finally {
|
|
@@ -6931,11 +6928,8 @@ var LoginPopup = ({
|
|
|
6931
6928
|
try {
|
|
6932
6929
|
await onVerifyEmailCode({ code, email });
|
|
6933
6930
|
if (isSignUp) {
|
|
6934
|
-
|
|
6935
|
-
|
|
6936
|
-
} else {
|
|
6937
|
-
onClose();
|
|
6938
|
-
}
|
|
6931
|
+
window.dispatchEvent(new CustomEvent("loaf:onboarding-start"));
|
|
6932
|
+
onClose();
|
|
6939
6933
|
setLoading(false);
|
|
6940
6934
|
return;
|
|
6941
6935
|
}
|