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