Skip to content

Commit

Permalink
Merge pull request #650 from mahajanmahesh935/category
Browse files Browse the repository at this point in the history
Bug #227683 : [desktop => preference popup] User information popup ge…
  • Loading branch information
paritshivani authored Sep 25, 2024
2 parents d80a6f6 + fe334b6 commit 6e102fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/nulp_elite/src/pages/profileData.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@ const PopupForm = ({ open, handleClose }) => {
return (
<Modal
open={open}
onClose={handleClose}
onClose={(event, reason) => {
if (reason !== "backdropClick" && reason !== "escapeKeyDown") {
handleClose();
}
}}
aria-labelledby="modal-modal-title"
aria-describedby="modal-modal-description"
>
Expand Down

0 comments on commit 6e102fa

Please sign in to comment.