Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,9 @@ <h1>
<li data-lang="th" id="me.oreshi.com" data-owner="somboytiger">
<a href="https://me.oreshi.com">me.oreshi.com</a>
</li>
<li data-lang="th" id="ntdotjsx.site" data-owner="ntdotjsx">
<a href="https://ntdotjsx.site">ntdotjsx.site</a>
</li>
Comment on lines +484 to +486

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Remove the old me.oreshi.com <li> to complete the replacement.

This PR adds ntdotjsx.site correctly, but me.oreshi.com is still present at Line 481-483, so the change is an append, not a replacement. Please delete the entire old <li> block to match the intended update and avoid stale entries.

Suggested fix
-        <li data-lang="th" id="me.oreshi.com" data-owner="somboytiger">
-          <a href="https://me.oreshi.com">me.oreshi.com</a>
-        </li>
         <li data-lang="th" id="ntdotjsx.site" data-owner="ntdotjsx">
           <a href="https://ntdotjsx.site">ntdotjsx.site</a>
         </li>

As per coding guidelines, “Remove identified entries from index.html by deleting the entire <li> elements for each site during cleanup,” and this PR objective explicitly describes a replacement.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@index.html` around lines 484 - 486, The PR adds the new ntdotjsx.site entry
but does not remove the old me.oreshi.com entry, making this an append rather
than a replacement. Locate and delete the entire li element block for
me.oreshi.com (which contains the href to me.oreshi.com) to complete the
replacement as intended. Ensure only the ntdotjsx.site li block remains after
the deletion.

Source: Coding guidelines

</ol>

<div id="feed"></div>
Expand Down