mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 02:13:33 +00:00
Fix nd/jf duration normalizations
This commit is contained in:
parent
5e33212112
commit
153d8ce6ce
4 changed files with 4 additions and 4 deletions
|
|
@ -124,7 +124,7 @@ export const CenterControls = ({ playersRef }: CenterControlsProps) => {
|
|||
|
||||
const currentTime = useCurrentTime();
|
||||
const currentPlayerRef = player === 1 ? player1 : player2;
|
||||
const duration = formatDuration((songDuration || 0) * 1000);
|
||||
const duration = formatDuration(songDuration || 0);
|
||||
const formattedTime = formatDuration(currentTime * 1000 || 0);
|
||||
|
||||
useEffect(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue