Skip to content

Commit

Permalink
Fix initializing email recipient from user email
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-stupakov committed Apr 25, 2024
1 parent c61249f commit 452f260
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const UsersOverview: FC = () => {
onSendEmail={() => {
sendMessageMethods.reset({
recepients: 'custom',
to: [item.email],
to: [item.userID],
});
setIsEmailModalShown(true);
}}
Expand Down

0 comments on commit 452f260

Please sign in to comment.