Skip to content

Commit

Permalink
refine
Browse files Browse the repository at this point in the history
  • Loading branch information
Terala-Priyanka committed Dec 27, 2024
1 parent 4aee2af commit eca572e
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions src/UserSearchModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,23 @@ import UserSearchView from './UserSearchView';

import css from './UserSearch.css';

const UserSearchModal = (props, modalRef) => {
const UserSearchModal = (
(
{
stripes,
selectUsers,
selectUser,
closeCB,
onCloseModal,
openWhen,
restoreFocus = true,
initialSelectedUsers,
tenantId,
},
modalRef
) => {
const {
stripes,
selectUsers,
selectUser,
closeCB,
onCloseModal,
openWhen,
restoreFocus = true,
initialSelectedUsers,
tenantId,

} = props;
const [error, setError] = useState(null);
const [callbackTrigger, setCallbackTrigger] = useState(false);
Expand Down

0 comments on commit eca572e

Please sign in to comment.