rename id param to claimId
This commit is contained in:
parent
0cfc9ab32c
commit
566fb2e0b5
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@ const perform = dispatch => ({
|
|||
changeVolume: volume => dispatch(doChangeVolume(volume)),
|
||||
doPlay: () => dispatch(doPlay()),
|
||||
doPause: () => dispatch(doPause()),
|
||||
savePosition: (id, position) => dispatch(savePosition(id, position)),
|
||||
savePosition: (claimId, position) =>
|
||||
dispatch(savePosition(claimId, position)),
|
||||
});
|
||||
|
||||
export default connect(select, perform)(Video);
|
||||
|
|
Loading…
Add table
Reference in a new issue