in the file 'pages/privateImageInstall/index.js', there is an incorrect method call in the promise chain. (at line 120)
the code uses .fail() after '.then()', which is not a valid method for Promises. The intention seems to be using .catch() to handle errors?
in the file 'pages/privateImageInstall/index.js', there is an incorrect method call in the promise chain. (at line 120)
the code uses
.fail()after '.then()', which is not a valid method for Promises. The intention seems to be using.catch()to handle errors?