@Effect()
  addVote$: Observable<Action> = this.actions$.pipe(
    ofType<AddVote>(ArticleActionTypes.AddVote),
    withLatestFrom(this.store$),
    switchMap(([action, storeState]) =>