-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
Description
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?
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


