@stokr/components-library 3.0.58 → 3.0.59
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.
|
@@ -26,7 +26,7 @@ const StepsProgressSignup = (props) => {
|
|
|
26
26
|
{
|
|
27
27
|
id: "self-certification",
|
|
28
28
|
handleClick: () => navigate("/self-certification"),
|
|
29
|
-
isDone: self_declaration?.
|
|
29
|
+
isDone: self_declaration?.confirmed === true,
|
|
30
30
|
isActive: isActiveStep("/self-certification")
|
|
31
31
|
},
|
|
32
32
|
{
|
|
@@ -162,7 +162,7 @@ function generateCoreChecklistTasks(user) {
|
|
|
162
162
|
link: signupBase ? `${signupBase}/register-liquid-securities` : "",
|
|
163
163
|
isClickable: isFromAllowedCountry && walletStatus !== "done"
|
|
164
164
|
};
|
|
165
|
-
const isSelfCertConfirmed = self_declaration?.
|
|
165
|
+
const isSelfCertConfirmed = self_declaration?.confirmed === true;
|
|
166
166
|
const selfCertStatus = isSelfCertConfirmed ? "done" : "missing";
|
|
167
167
|
const selfCertification = {
|
|
168
168
|
key: "selfCertification",
|