Skip to content

Commit

Permalink
fix(Persona Imports): Ensures that CSVs with duplicate headers do not…
Browse files Browse the repository at this point in the history
… cause the import to crash. (#1452 - [LL-142](https://learningpool.atlassian.net/browse/LL-142))
  • Loading branch information
h-kanazawa authored and ryasmi committed Sep 19, 2019
1 parent dd66a52 commit b46e4f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/redux/modules/persona.js
Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@ function* uploadPersonasSaga() {
if (status > 200) {
yield put(uploadPersonasFailure({ id, body }));
yield put(alert({
message: body
message: body.message,
}));
} else {
yield put(uploadPersonasSuccess({ id, body }));

0 comments on commit b46e4f3

Please sign in to comment.