I am trying to make a Navigation using shopify polaris library in nextjs.
items={[{
label: "Shipments",
icon: ShipmentMajorMonotone,
url: "/shipments",
}]}
After clicking any link in the <Navigation/>, it triggers a full reload.
The "url" part causes the page to reload resulting into a flickering effect. I've followed this solution but the issue persists.
I've also tried using next/router methods. It surely behaves smoothly sometimes but doesn't solve the issue completely.