Fix wall comments "Delete" links

Un-break the ability to delete wall comments.

// ==UserScript==
// @name        Fix wall comments "Delete" links
// @match       https://interpals.net/*
// @grant       none
// @version     1.0
// @author      Joey
// @license     MIT
// @description Un-break the ability to delete wall comments.
// @namespace https://greasyfork.org/users/1337890
// ==/UserScript==

const deleteLinks = document.querySelectorAll('form[method="post"][action^="/app/wall/delete/"] a[href="javascript:"]')

for (const element of deleteLinks) element.removeAttribute('href')