Skip to content

Commit a327701

Browse files
committed
[FE-263]style: 변수명 변경
1 parent 57915eb commit a327701

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/Setting/ManageComment/ManageComment.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ function ManageComment() {
5555
toDeleteReply: DeleteReplyType[],
5656
reply: MyRepliesType
5757
): React.ReactNode => {
58-
for (let tdr = 0; tdr < toDeleteReply.length; tdr++) {
59-
if (currentReplyCommentId === toDeleteReply[tdr].commentId) {
58+
for (let replyIndex = 0; replyIndex < toDeleteReply.length; replyIndex++) {
59+
if (currentReplyCommentId === toDeleteReply[replyIndex].commentId) {
6060
return (
6161
<ReplyCheckButton
6262
className="w-[18px]"

0 commit comments

Comments
 (0)