Skip to content

Commit

Permalink
chore: fix logging of error
Browse files Browse the repository at this point in the history
  • Loading branch information
gosiexon-zen committed Sep 19, 2024
1 parent 75aeb23 commit 343615b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions assets/new-request-form-bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/modules/new-request-form/fields/LookupField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function LookupField({
setInputValue(custom_object_record.name);
}
} catch (error) {
console.log(error);
console.error(error);
}
},
[customObjectKey]
Expand Down Expand Up @@ -131,7 +131,7 @@ export function LookupField({
setOptions([]);
}
} catch (error) {
console.log(error);
console.error(error);
} finally {
setIsLoadingOptions(false);
}
Expand Down

0 comments on commit 343615b

Please sign in to comment.