This repository was archived by the owner on Jan 10, 2018. It is now read-only.

Description
This seems like a bug to me...
I have created a simple reducer which logs out the action that comes in:
import {ActionReducer, Action} from "@ngrx/store";
import {State, intitialState} from "../state/main-state";
import {INCREMENT, EVENT_FROM_EFFECT} from "../actions/main-action-creator";
export const mainReducer: ActionReducer<State> =
(state = intitialState, action: Action) => {
console.log('Action came in! ' + action.type);
};
But when I test this is chrome I get the "init" action firing twice. Is there any good reason for firing it twice?
