We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f2368 commit c5daeabCopy full SHA for c5daeab
apps/web/src/routes/thread.$threadId.tsx
@@ -60,9 +60,6 @@ export default function ThreadPage() {
60
const [thread, setThread] = useState<ThreadDetail | null>(null);
61
const [posts, setPosts] = useState<PostDetail[]>([]);
62
const [loading, setLoading] = useState(true);
63
- const [error, setError] = useState<string | null>(null);
64
-
65
- // State for the Reply Box
66
const [replyContent, setReplyContent] = useState("");
67
const [submittingReply, setSubmittingReply] = useState(false);
68
0 commit comments