Error with 2 ->links() for one table

What seems to be the problem: I have a table with pagination above and below the table. While navigating, the navigation will suddenly include higher number pages and become jumbled. The top & bottom paginators also do not look identical (page numbers shown).

Steps to Reproduce: Unknown. On this test it happens every time.

Are you using the latest version of Livewire: Yes

Do you have any screenshots or code examples

:

On the Component
$parts = Partpriceyears::where('year', $year)->join('parts', 'partpriceyears.part_id', '=', 'parts.part_id')->paginate(10);

and then simply $parts->links()

If I disable one of the paginations it behaves correctly.

There are no other Livewire components (almost nothing at all, really) on this page.