Fix jsdoc

This commit is contained in:
Essem 2023-12-18 19:55:34 -06:00
parent a5a5437a29
commit fe768435d6
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C

View file

@ -37,13 +37,13 @@ const mapStateToProps = state => ({
const mapDispatchToProps = dispatch => ({
/**
* Set options in the redux store
* @param opts
* @param {Object} opts
*/
setOpt: (opts) => dispatch(tenorSet(opts)),
/**
* Submit GIF for upload
* @param file
* @param alt
* @param {File} file
* @param {string} alt
*/
submit: (file, alt) => dispatch(uploadCompose([file], alt)),
});