We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57915eb commit a327701Copy full SHA for a327701
1 file changed
src/pages/Setting/ManageComment/ManageComment.tsx
@@ -55,8 +55,8 @@ function ManageComment() {
55
toDeleteReply: DeleteReplyType[],
56
reply: MyRepliesType
57
): React.ReactNode => {
58
- for (let tdr = 0; tdr < toDeleteReply.length; tdr++) {
59
- if (currentReplyCommentId === toDeleteReply[tdr].commentId) {
+ for (let replyIndex = 0; replyIndex < toDeleteReply.length; replyIndex++) {
+ if (currentReplyCommentId === toDeleteReply[replyIndex].commentId) {
60
return (
61
<ReplyCheckButton
62
className="w-[18px]"
0 commit comments