diff --git a/packages/backend/src/routers/contactUs.js b/packages/backend/src/routers/contactUs.js
index 14b25426..80c92bda 100644
--- a/packages/backend/src/routers/contactUs.js
+++ b/packages/backend/src/routers/contactUs.js
@@ -33,7 +33,7 @@ router.post('/contactUs', auth, express.json(), async (req, res, next)=>{
next();
// check if user is verified
- if((config.strict_email_verification_required || req.user.requires_email_confirmation) && !req.user.email_confirmed)
+ if(req.user.email_confirmed)
return res.status(400).send({code: 'account_is_not_verified', message: 'Account is not verified'});
// message is required
diff --git a/src/UI/UIWindowFeedback.js b/src/UI/UIWindowFeedback.js
index 92ab92a5..77aa366e 100644
--- a/src/UI/UIWindowFeedback.js
+++ b/src/UI/UIWindowFeedback.js
@@ -17,12 +17,20 @@
* along with this program. If not, see