Here's error detail it shows the error inside package 'tiny-invariant' really need help im stuck in it.
This is what it shows on the browser: https://i.stack.imgur.com/5eXIY.png
This is tiny-invariant.esm.js file looks like inside node-modules:
` var isProduction = process.env.NODE_ENV === 'production';
var prefix = 'Invariant failed';
function invariant(condition, message) {
if (condition) {
return;
}
if (isProduction) {
throw new Error(prefix);
}
var provided = typeof message === 'function' ? message() :
message;
var value = provided ? prefix + ": " + provided : prefix;
throw new Error(value);
}
export { invariant as default }; `