diff --git a/packages/app/src/pages/music/components/feed/index.jsx b/packages/app/src/pages/music/components/feed/index.jsx index 7d967188..59538c0e 100755 --- a/packages/app/src/pages/music/components/feed/index.jsx +++ b/packages/app/src/pages/music/components/feed/index.jsx @@ -1,5 +1,6 @@ import React from "react" import * as antd from "antd" +import classnames from "classnames" import { ImageViewer, UserPreview } from "components" import { Icons } from "components/Icons" import { Translation } from "react-i18next" @@ -101,6 +102,7 @@ const PlaylistsList = (props) => { } const PlaylistItem = (props) => { + const [coverHover, setCoverHover] = React.useState(false) const { playlist } = props const onClick = () => { @@ -114,34 +116,36 @@ const PlaylistItem = (props) => { const onClickPlay = (e) => { e.stopPropagation() - console.log(playlist.list) - app.cores.player.startPlaylist(playlist.list) } return