diff --git a/ui/component/collectionActions/view.jsx b/ui/component/collectionActions/view.jsx index 52f7d03c0..0b9dd963c 100644 --- a/ui/component/collectionActions/view.jsx +++ b/ui/component/collectionActions/view.jsx @@ -15,7 +15,7 @@ import { ENABLE_FILE_REACTIONS } from 'config'; type Props = { uri: string, claim: StreamClaim, - openModal: (id: string, { uri: string, claimIsMine?: boolean, isSupport?: boolean }) => void, + openModal: (id: string, {}) => void, myChannels: ?Array, doToast: ({ message: string }) => void, claimIsPending: boolean, @@ -24,6 +24,7 @@ type Props = { showInfo: boolean, setShowInfo: (boolean) => void, collectionHasEdits: boolean, + isBuiltin: boolean, }; function CollectionActions(props: Props) { @@ -37,6 +38,7 @@ function CollectionActions(props: Props) { showInfo, setShowInfo, collectionHasEdits, + isBuiltin, } = props; const { push } = useHistory(); const isMobile = useIsMobile(); @@ -44,54 +46,66 @@ function CollectionActions(props: Props) { const webShareable = true; // collections have cost? const lhsSection = ( <> - {ENABLE_FILE_REACTIONS && uri && } - {uri && } - {/* TODO Add ClaimRepostButton component */} - {uri && ( -