This commit is contained in:
Deluan 2024-04-13 12:14:10 -04:00
parent 4714d85a56
commit 420706815d
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import { useSelector } from 'react-redux'
const Placeholder = () => {
const playerRatingControl = useSelector(
(state) => state.settings.playerRatingControl
(state) => state.settings.playerRatingControl,
)
switch (playerRatingControl) {
@ -29,7 +29,7 @@ const Placeholder = () => {
const Toolbar = ({ id }) => {
const playerRatingControl = useSelector(
(state) => state.settings.playerRatingControl
(state) => state.settings.playerRatingControl,
)
const { data, loading } = useGetOne('song', id)
const [toggleLove, toggling] = useToggleLove('song', data)