Skip to content

Commit

Permalink
chore: add more ignored errors
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgeron committed Jan 27, 2025
1 parent fadbad3 commit db5a2cf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions packages/app/src/systems/Error/utils/getErrorIgnoreData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,24 @@ const IGNORED_ERRORS: IgnoredError[] = [
comparison: 'partial',
action: 'hide',
},
{
value: 'Browser is shutting down.',
field: 'message',
comparison: 'partial',
action: 'hide',
},
{
value: 'is not a function',
field: 'message',
comparison: 'partial',
action: 'hide',
},
{
value: 'Asset ID already exists',
field: 'message',
comparison: 'partial',
action: 'ignore',
},
{
value: 'Error fetching asset from db',
field: 'message',
Expand Down Expand Up @@ -116,4 +134,10 @@ const IGNORED_ERRORS: IgnoredError[] = [
comparison: 'partial',
action: 'hide',
},
{
value: 'PopUp timed out waiting for event',
field: 'message',
comparison: 'partial',
action: 'hide',
},
];

0 comments on commit db5a2cf

Please sign in to comment.