fix(ui): autoplay session ids are parsed to int
This commit is contained in:
parent
4c8d1050d6
commit
d94d8fc9b3
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue