Implement Last.fm account linking UI

This commit is contained in:
Steve Richter
2021-06-21 21:20:44 -04:00
committed by Deluan Quintão
parent 8b62a58b4c
commit 5fbfd9c81e
6 changed files with 149 additions and 89 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ import { SelectLanguage } from './SelectLanguage'
import { SelectTheme } from './SelectTheme'
import { SelectDefaultView } from './SelectDefaultView'
import { NotificationsToggle } from './NotificationsToggle'
import { ScrobbleToggle } from './ScrobbleToggle'
import { LastfmScrobbleToggle } from './LastfmScrobbleToggle'
import config from '../config'
const useStyles = makeStyles({
@@ -24,7 +24,7 @@ const Personal = () => {
<SelectLanguage />
<SelectDefaultView />
<NotificationsToggle />
{config.devEnableScrobble && <ScrobbleToggle />}
{config.devEnableScrobble && <LastfmScrobbleToggle />}
</SimpleForm>
</Card>
)