Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
fix spacing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
B77Mills committed Sep 27, 2023
1 parent a1029f0 commit 19900ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/marko-web-identity-x/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class IdentityXConfiguration {
const select = user.customSelectFieldAnswers.find(({ id }) => id === value);
if (select && select.answers.length) userData[key] = select.answers.map(({ label }) => label).join('|');
const boolean = user.customBooleanFieldAnswers.find(({ id }) => id === value);
if (boolean && boolean.hasAnswered) userData[key] = boolean.answer;
if (boolean && boolean.hasAnswered) userData[key] = boolean.answer;
});
return userData;
}
Expand Down

0 comments on commit 19900ac

Please sign in to comment.