Skip to content

Commit

Permalink
Get IVAs of corresponding user (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito authored Jun 17, 2024
1 parent 80de00e commit 5b410a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const AccessRequestsList = (props: AccessRequestListProps) => {
};
const handleShowModal = async (accessRequest: AccessRequest) => {
setSelectedAccessRequest(accessRequest);
const ivas = await getUserIVAs(props.user?.id);
const ivas = await getUserIVAs(accessRequest.user_id);
if (ivas) {
setUserIVAs(ivas);
setShowModal(true);
Expand Down

0 comments on commit 5b410a2

Please sign in to comment.