diff --git a/frontend/app/components/Session_/Player/Overlay/AutoplayTimer.tsx b/frontend/app/components/Session_/Player/Overlay/AutoplayTimer.tsx index 793d84601..144d28208 100644 --- a/frontend/app/components/Session_/Player/Overlay/AutoplayTimer.tsx +++ b/frontend/app/components/Session_/Player/Overlay/AutoplayTimer.tsx @@ -71,6 +71,6 @@ function AutoplayTimer({ nextId, siteId, history }: IProps) { export default withRouter( connect((state: any) => ({ siteId: state.getIn(['site', 'siteId']), - nextId: parseInt(state.getIn(['sessions', 'nextId'])), + nextId: state.getIn(['sessions', 'nextId']), }))(AutoplayTimer) );