From 892d9ac4b47b89f89df9a22aef8f71a4b26b62c4 Mon Sep 17 00:00:00 2001 From: Joy A Date: Wed, 11 Dec 2024 11:24:44 +0530 Subject: [PATCH] #0 | Quick fix to IdentifierUserAssginment user list to unblock testing of other cards --- src/adminApp/IdentifierUserAssignment.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/adminApp/IdentifierUserAssignment.js b/src/adminApp/IdentifierUserAssignment.js index 7affa5eec..ed58a110f 100644 --- a/src/adminApp/IdentifierUserAssignment.js +++ b/src/adminApp/IdentifierUserAssignment.js @@ -59,9 +59,7 @@ export const IdentifierUserAssignmentDetail = props => { }; export const UserSelectInput = props => { - const choices = props.choices.filter( - choice => choice.name != null && choice.organisationId != null - ); + const choices = props.choices.filter(choice => choice.name != null && choice.organisationId != null); return ; }; @@ -71,6 +69,7 @@ const IdentifierUserAssignmentForm = props => ( {({ formData, dispatch, ...rest }) => ( ( )} - + );