the action is sent through the reducer (I see REMOVE_ALL_NOTIFICATIONS in the redux store as the last action) but the notifications remain in the store (and thus displayed). I can dismiss them manually. canDismiss is set to true on all my notifications. There is no difference in redux store state when clicking close all. Anyone else encountered this?
notifications displayed:

notifications in redux store:

last actions sent through redux store:

a sample of one of my notifications:

...

Seems the code could handle a force parameter, but the param is not being sent in
|
onClick={() => handleDismissAll()}>Close All</div> |

the reducer is returning the same state:
|
case REMOVE_ALL_NOTIFICATIONS: |
using with chrome on mac os-x10, with react@^0.14.3
the action is sent through the reducer (I see
REMOVE_ALL_NOTIFICATIONSin the redux store as the last action) but the notifications remain in the store (and thus displayed). I can dismiss them manually.canDismissis set totrueon all my notifications. There is no difference in redux store state when clicking close all. Anyone else encountered this?notifications displayed:

notifications in redux store:

last actions sent through redux store:

a sample of one of my notifications:


...
Seems the code could handle a
forceparameter, but the param is not being sent inreact-redux-notify/src/components/Notification/index.js
Line 113 in ea0c29e
the reducer is returning the same state:
react-redux-notify/src/modules/Notifications.js
Line 47 in ea0c29e
using with chrome on mac os-x10, with react@^0.14.3