Uncaught (in promise) TypeError: (destructured parameter) is undefined
h main.js:2911
render main.js:4111
Y main.js:4509
That is the error that is thrown on productlist click
Basir Answered question October 13, 2022
This function declaration here:
function myf({var1, var2}) {
}
but you call it without parameter like this:
myf();
Without any argument. This means that myf user will start by attempting to do:
{ var1, var2 } = undefined
Which is the type error that you are recieving.
Basir Answered question October 13, 2022