Duplicated url table query bug?

I build this route:
route('filament.admin.pages.my-payments', [
    'tableFilters' => [
        'card' => [
            'value' => $record->id,
        ],
    ],
]);

// it returns -> "https://example-app.test/admin/my-payments?tableFilters%5Bcard%5D%5Bvalue%5D=1"

So then i visit the url, but after the page has loaded, the url changes to:
https://example-app.test/admin/my-payments?tableFilters%5Bcard%5D%5Bvalue%5D=1&tableFilters[card][value]=1

so seems it duplicates the url's querystring, one "url-encoded", and the other no
Was this page helpful?