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
求教,react-router-dom用的也是5xx的版本却出现这个问题:A < Route > is only ever to be used as the child of < Routes > element, never rendered directly. Please wrap your < Route > in a < Routes >.
./src/pages/discover/child-pages/songs/index.js
useEffect(() => {
dispatch(changeCurrentCategoryAction(albumName || cat))
}, [dispatch, cat, albumName])
把下面这里改一下
useEffect(() => {
const name = albumName || cat
if (name) {
dispatch(changeCurrentCategoryAction(name))
}
}, [dispatch, cat, albumName])
The text was updated successfully, but these errors were encountered: