Fix: Remove paged from formData to prevent ?paged= in URL

The formData object was getting paged added, which then got included
in the URL query params by updateUrl(). Now paged is only sent in
the AJAX POST data, not added to formData.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hanson.xyz Dev
2025-12-16 00:19:39 -06:00
parent fe29eb74c4
commit ae0fc65e4e
2 changed files with 1 additions and 2 deletions
File diff suppressed because one or more lines are too long
@@ -521,7 +521,6 @@
var self = this;
var formData = this.getFormData();
formData.paged = page;
// Show loading state
this.isLoading = true;