Fix TypeError: Cannot read properties of undefined (reading 'length')

This commit is contained in:
Deluan 2021-10-29 18:10:17 -04:00
parent a42aeff88d
commit d3e142233b

View File

@ -38,7 +38,7 @@ const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
const getAllSongsAndDispatch = React.useCallback(
(action) => {
if (ids.length === record.songCount) {
if (ids?.length === record.songCount) {
return dispatch(action(data, ids))
}