diff --git a/frontend/app/components/BugFinder/CustomFilters/FilterItem.js b/frontend/app/components/BugFinder/CustomFilters/FilterItem.js
index e929a53c4..8b60b601c 100644
--- a/frontend/app/components/BugFinder/CustomFilters/FilterItem.js
+++ b/frontend/app/components/BugFinder/CustomFilters/FilterItem.js
@@ -6,7 +6,7 @@ import cn from 'classnames';
const FilterItem = ({ className = '', icon, label, onClick }) => {
return (
-
+ { icon && }
{ label }
);
diff --git a/frontend/app/components/Client/ProfileSettings/OptOut.js b/frontend/app/components/Client/ProfileSettings/OptOut.js
index dea675a60..6e4643d7b 100644
--- a/frontend/app/components/Client/ProfileSettings/OptOut.js
+++ b/frontend/app/components/Client/ProfileSettings/OptOut.js
@@ -6,7 +6,7 @@ import { updateClient } from 'Duck/user'
function OptOut(props) {
const { optOut } = props;
const onChange = () => {
- props.updateClient({ optOut: !optOut, name: 'OpenReplay' })
+ props.updateClient({ optOut: !optOut })
}
return (