Project ID: 7ThDBhB7S1VHr4Ty8Ew4pe
One chunk of this app includes a statement console.log(typeof ye)
which results in the word “function” being logged on every page. ye
is an empty function so I’m not sure what it’s meant to be doing, if anything.
The code in the chunk looks like this:
// ...
function ye() {}
// ...
console.log(typeof ye);
Is this console.log
statement something that Plasmic is automatically including? If not, how can I determine where it’s being added in my app? Thanks in advance!