diff --git a/packages/app/src/pages/account/index.jsx b/packages/app/src/pages/account/index.jsx index 40d5abd3..7dfb8550 100755 --- a/packages/app/src/pages/account/index.jsx +++ b/packages/app/src/pages/account/index.jsx @@ -16,7 +16,8 @@ import "./index.less" const TabsComponent = { "posts": PostsTab, "followers": FollowersTab, - "details": DetailsTab + "details": DetailsTab, + "music": DetailsTab, } const TabRender = React.memo((props, ref) => { @@ -75,6 +76,8 @@ export default class Account extends React.Component { actionsRef = React.createRef() componentDidMount = async () => { + app.layout.toggleCenteredContent(false) + const token = await SessionModel.getDecodedToken() const location = window.app.history.location const query = new URLSearchParams(location.search) @@ -271,6 +274,15 @@ export default class Account extends React.Component { + } + > + + {t => t("Music")} + + + }