diff --git a/src/renderer/page/channel/view.jsx b/src/renderer/page/channel/view.jsx index a2e80df44..4c62894d3 100644 --- a/src/renderer/page/channel/view.jsx +++ b/src/renderer/page/channel/view.jsx @@ -3,11 +3,9 @@ import React from 'react'; import BusyIndicator from 'component/common/busy-indicator'; import { FormField, FormRow } from 'component/common/form'; import ReactPaginate from 'react-paginate'; -import Button from 'component/button'; import SubscribeButton from 'component/subscribeButton'; import Page from 'component/page'; import FileList from 'component/fileList'; -import * as modals from 'constants/modal_types'; type Props = { uri: string, @@ -23,7 +21,6 @@ type Props = { fetchClaims: (string, number) => void, fetchClaimCount: string => void, navigate: (string, {}) => void, - openModal: (string, {}) => void, }; class ChannelPage extends React.PureComponent { @@ -61,7 +58,7 @@ class ChannelPage extends React.PureComponent { } render() { - const { fetching, claimsInChannel, claim, uri, page, totalPages, openModal } = this.props; + const { fetching, claimsInChannel, claim, uri, page, totalPages } = this.props; const { name } = claim; let contentList; @@ -81,12 +78,6 @@ class ChannelPage extends React.PureComponent {

{name}

-