@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.js
CHANGED
|
@@ -6809,11 +6809,8 @@ var LoginPopup = ({
|
|
|
6809
6809
|
}
|
|
6810
6810
|
return;
|
|
6811
6811
|
}
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
} else {
|
|
6815
|
-
onClose();
|
|
6816
|
-
}
|
|
6812
|
+
window.dispatchEvent(new CustomEvent("loaf:onboarding-start"));
|
|
6813
|
+
onClose();
|
|
6817
6814
|
} catch (err) {
|
|
6818
6815
|
setError(err instanceof Error ? err.message : "Couldn't complete sign up. Please try again.");
|
|
6819
6816
|
} finally {
|
|
@@ -6956,11 +6953,8 @@ var LoginPopup = ({
|
|
|
6956
6953
|
try {
|
|
6957
6954
|
await onVerifyEmailCode({ code, email });
|
|
6958
6955
|
if (isSignUp) {
|
|
6959
|
-
|
|
6960
|
-
|
|
6961
|
-
} else {
|
|
6962
|
-
onClose();
|
|
6963
|
-
}
|
|
6956
|
+
window.dispatchEvent(new CustomEvent("loaf:onboarding-start"));
|
|
6957
|
+
onClose();
|
|
6964
6958
|
setLoading(false);
|
|
6965
6959
|
return;
|
|
6966
6960
|
}
|