You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a relatively minor error, quite annoying until you realize how simple it is to fix.
This is fixed later in the video when
console.log('there was an error:', error.response)
is replaced by
console.log('there was an error:', error.message)
The text was updated successfully, but these errors were encountered:
at 0:36 in the Success & Error Notifications lecture the code incorrectly references error.response when error.message should be used.
console.log('there was an error:', error.response)
https://www.vuemastery.com/courses/mastering-vuex/success-error-notifications
It's a relatively minor error, quite annoying until you realize how simple it is to fix.
This is fixed later in the video when
console.log('there was an error:', error.response)
is replaced by
console.log('there was an error:', error.message)
The text was updated successfully, but these errors were encountered: