diff --git a/src/hooks/useStateString.js b/src/hooks/useStateString.js index cc830cea..5cca9426 100644 --- a/src/hooks/useStateString.js +++ b/src/hooks/useStateString.js @@ -37,7 +37,7 @@ const useStateString = (commentOrSubplebbit) => { } // fallback to comment or subplebbit state when possible - if (!stateString) { + if (!stateString && commentOrSubplebbit?.state !== 'succeeded') { if (commentOrSubplebbit?.publishingState && commentOrSubplebbit?.publishingState !== 'stopped' && commentOrSubplebbit?.publishingState !== 'succeeded') { stateString = commentOrSubplebbit.publishingState; } else if (commentOrSubplebbit?.updatingState !== 'stopped' && commentOrSubplebbit?.updatingState !== 'succeeded') {