diff --git a/ui/component/shareButton/view.jsx b/ui/component/shareButton/view.jsx index afb525b73..871156ef0 100644 --- a/ui/component/shareButton/view.jsx +++ b/ui/component/shareButton/view.jsx @@ -6,18 +6,19 @@ import Button from 'component/button'; type Props = { uri: string, + isChannel: boolean, doOpenModal: (id: string, {}) => void, }; export default function ShareButton(props: Props) { - const { uri, doOpenModal } = props; + const { uri, doOpenModal, isChannel = false } = props; return (