react + fluxxor でごにょごにょしている時に、以下のWarningが出てきてイベントが正しくハンドルされなかった。
An action of type send-chat was dispatched, but no store handled it
結構悩んでたのにクソ凡ミスだった。
Store内でbindActionsする時に該当のイベントを入れ忘れていた。。。
// ↓これの引数に入れてなかった。
this.bindActions(
constants.START_SELECT, this.onStartSelect,
constants.END_SELECT, this.onEndSelect
);
以上。