diff --git a/app/src/controllers/project/selectors.js b/app/src/controllers/project/selectors.js index 8d2d77adac..664767c302 100644 --- a/app/src/controllers/project/selectors.js +++ b/app/src/controllers/project/selectors.js @@ -146,8 +146,7 @@ export const projectNotificationsStateSelector = (state) => export const projectPluginNotificationsStateSelector = (pluginName) => createSelector( projectAttributesSelector, - (attributes) => - !!(attributes[NOTIFICATIONS_PLUGIN_ATTRIBUTE_ENABLED_KEY(pluginName)] === 'true'), + (attributes) => attributes[NOTIFICATIONS_PLUGIN_ATTRIBUTE_ENABLED_KEY(pluginName)] === 'true', ); export const projectNotificationsLoadingSelector = (state) =>