// @flow import React from 'react'; import Lbry from 'lbry-redux'; import Button from 'component/button'; type Props = { reflectingInfo?: ReflectingUpdate, checkReflecting: () => void, }; const PublishPending = (props: Props) => { const { reflectingInfo = {}, checkReflecting } = props; const { fileListItem, progress, stalled } = reflectingInfo; const sdHash = fileListItem && fileListItem.sd_hash; const reflecting = Object.keys(reflectingInfo).length; if (stalled) { return (