Skip to content

Commit

Permalink
Fix error function name
Browse files Browse the repository at this point in the history
  • Loading branch information
ericnewcomer committed Nov 8, 2024
1 parent 1be188b commit b1d0ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ export const showError = (error = null) => {
if (window.showErrorDialog) {
window.showErrorDialog(error);
} else {
console.log.error(error);
console.error(error);
}
};

0 comments on commit b1d0ef6

Please sign in to comment.