Skip to content

Commit c5daeab

Browse files
feat: Create the whole CRUD for topics threads posts and user
Signed-off-by: amanraj <raj.aman4001@gmail.com>
1 parent f2f2368 commit c5daeab

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

apps/web/src/routes/thread.$threadId.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ export default function ThreadPage() {
6060
const [thread, setThread] = useState<ThreadDetail | null>(null);
6161
const [posts, setPosts] = useState<PostDetail[]>([]);
6262
const [loading, setLoading] = useState(true);
63-
const [error, setError] = useState<string | null>(null);
64-
65-
// State for the Reply Box
6663
const [replyContent, setReplyContent] = useState("");
6764
const [submittingReply, setSubmittingReply] = useState(false);
6865

0 commit comments

Comments
 (0)