Skip to content
Snippets Groups Projects
Unverified Commit eff589db authored by Tomasz Knapik's avatar Tomasz Knapik
Browse files

Enable console.error for API call

parent 6997ceb3
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ export const fetchSubmissionsByRound = roundId => { ...@@ -25,6 +25,7 @@ export const fetchSubmissionsByRound = roundId => {
} }
dispatch(updateSubmissionsByRound(roundId, json)); dispatch(updateSubmissionsByRound(roundId, json));
} catch (e) { } catch (e) {
console.error(e);
dispatch(failLoadingSubmissionsByRound(roundId)); dispatch(failLoadingSubmissionsByRound(roundId));
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment