Browse Source

fix player1 when moving to new page while fading

master
jeffvli 3 years ago
parent
commit
443e423ff7
  1. 6
      src/components/viewtypes/ListViewTable.tsx

6
src/components/viewtypes/ListViewTable.tsx

@ -167,9 +167,9 @@ const ListViewTable = ({
})
);
}
}
if (playQueue.currentPlayer === 1) {
dispatch(fixPlayer2Index());
if (playQueue.currentPlayer === 1) {
dispatch(fixPlayer2Index());
}
}
}, [
columns,

Loading…
Cancel
Save