Fix web player data

This commit is contained in:
jeffvli 2022-12-25 01:26:01 -08:00
parent 1fbdfe725c
commit ae5afe868e

View file

@ -790,9 +790,9 @@ export const useQueueControls = () =>
export const useQueueData = () => usePlayerStore((state) => state.actions.getQueueData);
export const usePlayer1Data = () => usePlayerStore((state) => state.actions.player1);
export const usePlayer1Data = () => usePlayerStore((state) => state.actions.player1());
export const usePlayer2Data = () => usePlayerStore((state) => state.actions.player2);
export const usePlayer2Data = () => usePlayerStore((state) => state.actions.player2());
export const useSetCurrentTime = () => usePlayerStore((state) => state.actions.setCurrentTime);