Fix invalid function name
This commit is contained in:
parent
1e65defc44
commit
c67633b969
@ -3,7 +3,7 @@ import { connect } from "react-redux"
|
|||||||
import { bindActionCreators } from "redux"
|
import { bindActionCreators } from "redux"
|
||||||
import { addTorrent } from "../../actions/torrents"
|
import { addTorrent } from "../../actions/torrents"
|
||||||
import { refreshSubtitles } from "../../actions/subtitles"
|
import { refreshSubtitles } from "../../actions/subtitles"
|
||||||
import { addShowToWishlist, deleteShowFromWishlist, getEpisodeDetails, updateShowDetails } from "../../actions/shows"
|
import { addShowToWishlist, deleteShowFromWishlist, getEpisodeDetails, fetchShowDetails } from "../../actions/shows"
|
||||||
|
|
||||||
import Loader from "../loader/loader"
|
import Loader from "../loader/loader"
|
||||||
import DownloadButton from "../buttons/download"
|
import DownloadButton from "../buttons/download"
|
||||||
@ -22,7 +22,7 @@ function mapStateToProps(state) {
|
|||||||
}
|
}
|
||||||
const mapDispatchToProps = (dispatch) =>
|
const mapDispatchToProps = (dispatch) =>
|
||||||
bindActionCreators({addTorrent, addShowToWishlist, deleteShowFromWishlist,
|
bindActionCreators({addTorrent, addShowToWishlist, deleteShowFromWishlist,
|
||||||
updateShowDetails, getEpisodeDetails,
|
fetchShowDetails, getEpisodeDetails,
|
||||||
refreshSubtitles }, dispatch)
|
refreshSubtitles }, dispatch)
|
||||||
|
|
||||||
class ShowDetails extends React.Component {
|
class ShowDetails extends React.Component {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user