Fix
[vchess.git] / client / src / utils / modalClick.js
index f4687fd..8709fd1 100644 (file)
@@ -2,5 +2,5 @@ export function processModalClick(e, cb) {
   // Close a modal when click on it but outside focused element
   const data = e.target.dataset;
   if (!!data.checkbox) document.getElementById(data.checkbox).checked = false;
-  if (!!cb) cb();
+  if (!!cb && ["chatWrap","peopleWrap"].includes(e.target.id)) cb();
 }