Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
making it so we can show the exception in console
Browse files Browse the repository at this point in the history
  • Loading branch information
yyassi-heartex committed Jul 17, 2023
1 parent fb8df63 commit d1dcdd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CandidateTaskView/CandidateTaskView.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const DataItemVisual = forwardRef(({ columns, dataKey, data }, imageRef) => {
try {
response = await fetch(data);
} catch (ex) {
response = {};
response = ex;
}

if (response?.status === 200) {
Expand Down

0 comments on commit d1dcdd3

Please sign in to comment.