about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/features/notifications/containers/overlay_container.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/features/notifications/containers/overlay_container.js')
-rw-r--r--app/javascript/themes/glitch/features/notifications/containers/overlay_container.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/javascript/themes/glitch/features/notifications/containers/overlay_container.js b/app/javascript/themes/glitch/features/notifications/containers/overlay_container.js
deleted file mode 100644
index 52649cdd7..000000000
--- a/app/javascript/themes/glitch/features/notifications/containers/overlay_container.js
+++ /dev/null
@@ -1,18 +0,0 @@
-//  Package imports.
-import { connect } from 'react-redux';
-
-//  Our imports.
-import NotificationOverlay from '../components/overlay';
-import { markNotificationForDelete } from 'themes/glitch/actions/notifications';
-
-const mapDispatchToProps = dispatch => ({
-  onMarkForDelete(id, yes) {
-    dispatch(markNotificationForDelete(id, yes));
-  },
-});
-
-const mapStateToProps = state => ({
-  show: state.getIn(['notifications', 'cleaningMode']),
-});
-
-export default connect(mapStateToProps, mapDispatchToProps)(NotificationOverlay);