You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to listen to an action without implementing a whole store you can use ActionListeners from the alt utils.
importActionListenersfrom'alt/utils/ActionListeners'constlistener=newActionListeners(alt)listener.addActionListener(actions.DO_THIS,(thing)=>{console.log(`doing ${thing}`)})/* ... and don't forget to remove listeners when you're done */listener.removeAllActionListeners()