From d0654df19d4e4951cd0aec055278c4c0384b2cf2 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Thu, 14 Jan 2021 12:37:46 +1100 Subject: [PATCH] Added ignore to LastPass error --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index 0b07e7f..a503ace 100644 --- a/src/index.js +++ b/src/index.js @@ -19,10 +19,12 @@ if (process.env.REACT_APP_LOGGING === "true") { // Ignore resize error as it is triggered by going fullscreen on slower computers // Ignore quota error // Ignore XDR encoding failure bug in Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1678243 + // Ignore LastPass extension text error ignoreErrors: [ "ResizeObserver loop limit exceeded", "QuotaExceededError", "XDR encoding failure", + "Assertion failed: Input argument is not an HTMLInputElement", ], }); }