Browse Source

fix create playlist bug

pull/1/head
PhilReact 9 months ago
parent
commit
1806ec3aa0
  1. 2
      src/components/EditPlaylist/EditPlaylist.tsx
  2. 1
      src/pages/Home/VideoList.tsx

2
src/components/EditPlaylist/EditPlaylist.tsx

@ -342,7 +342,7 @@ export const EditPlaylist = () => {
description: metadescription,
id: identifier,
service: "PLAYLIST",
name: username,
user: username,
...playlistObject
}
dispatch(

1
src/pages/Home/VideoList.tsx

@ -560,7 +560,6 @@ export const VideoList = ({ mode }: VideoListProps) => {
return null;
}
const isPlaylist = videoObj?.service === "PLAYLIST";
if (isPlaylist) {
return (

Loading…
Cancel
Save