Skip to content

Commit

Permalink
style: remove unnecessary comment on error tracking source
Browse files Browse the repository at this point in the history
  • Loading branch information
pacholoamit committed May 9, 2024
1 parent 1d2742a commit 2dda73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/sources/error-tracking-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const errorTrackingSource = (callback: () => void) => {
try {
callback();
} catch (error) {
// window.tracker("trackError", {
window.tracker("trackError", {
message: error?.message,
error: error,
});
Expand Down

0 comments on commit 2dda73b

Please sign in to comment.