Hey all! I’m experiencing the same issue. I tried Firefox, Chrome and also private windows on both, without any luck.
I ended up debugging with Claude and it seems the JQuery error is the culprit. Triggering the request manually in the console worked for me:
const csrf = document.querySelector('input[name=csrfmiddlewaretoken]').value;
fetch(`/en-US/developers/addon/${your_add_on_slug}/delete`, {
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
body: new URLSearchParams({
csrfmiddlewaretoken: csrf,
slug: ${your_add_on_slug},
addon_id: ${your_add_on_id},
reason: ''
})
}).then(r => console.log(r.status, r.url))