diff --git a/src/components/StateLabel.jsx b/src/components/StateLabel.jsx
index c366d100..079e28a0 100644
--- a/src/components/StateLabel.jsx
+++ b/src/components/StateLabel.jsx
@@ -9,12 +9,18 @@ const StateLabel = ({ commentCid, className }) => {
return (
comment.state === "succeeded" ? null : (
-
- <>
-
- {stateString || comment.state.charAt(0).toUpperCase() + comment.state.slice(1)}
- >
-
+ comment.state === "initializing" ? null : (
+
+ <>
+
+ (
+
+ {stateString}
+
+ )
+ >
+
+ )
)
)
};