diff --git a/src/components/views/Thread.jsx b/src/components/views/Thread.jsx index 299edb71..ee404fcd 100644 --- a/src/components/views/Thread.jsx +++ b/src/components/views/Thread.jsx @@ -21,7 +21,6 @@ import handleStyleChange from '../../utils/handleStyleChange'; import renderThreadComments from '../../utils/renderThreadComments'; import useClickForm from '../../hooks/useClickForm'; import useError from '../../hooks/useError'; -import useSuccess from '../../hooks/useSuccess'; const Thread = () => { @@ -388,10 +387,10 @@ const Thread = () => { No replies yet ) ) : ( - Fetching IPFS... + Fetching IPNS... ) ) : ( - Fetching IPFS... + Fetching IPNS... )}
@@ -506,7 +505,9 @@ const Thread = () => { - {comment.replyCount === undefined ? : null} + {comment.state === "fetching-ipns" ? + (null) : + (comment.replyCount === undefined ? () : (null))} {renderedComments.map((reply, index) => { const replyMediaInfo = getCommentMediaInfo(reply); const fallbackImgUrl = "/assets/filedeleted-res.gif";