Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/home
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentcaron authored Mar 20, 2019
2 parents 23ee7e7 + b6515c7 commit c6661bd
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ export class CompetitionEditEffects {
.pipe(
map((r) => new QuestionCreated({
...r,
question: action.question
question: {
_id: r.question as any,
...action.question
}
})),
catchError(() => of(new CreateQuestionError()))
);
Expand Down

0 comments on commit c6661bd

Please sign in to comment.