Console showing error continuously

I’m receiving an error message inside my console and I have no idea where that is coming from.
I tried deleting all elements to see if I had a code running on the background creating this error but even then it still continued to appear.

Is that a bug?e

Try checking you app workflows on page load workflows it looks like you had a variable at some point and have deleted it so now when it is trying to set the value it can’t find it

Already did that and there isn’t any on load workflows that may be using this variable.
It happens only when loading one specific page and I even trying creating a new one from scratch but that also did not work.

Found the problem.

There was a workflow that was triggered with the app that was causing the error.
Strangely, this workflow did not have the variable from the problem linked to it.

if(!window[“scp-loading-bfdb5f2a-a90f-4c51-9523-18c097dfcf0c”]) {
window[“scp-loading-bfdb5f2a-a90f-4c51-9523-18c097dfcf0c”] = true;
let doc;
/* Adding script from https://unpkg.com/@phosphor-icons/web */
doc = document.createElement(‘script’);
doc.src = ‘https://unpkg.com/@phosphor-icons/web’;
document.body.appendChild(doc);
}

I just disabled it and the enabled it again and the error disappeared. But even now an then, it comes back