Slices on pages get rendered in the wrong order

Hi @fsyntax,

It seems we had a wrong snippet in our doc (totally our fault on that), can you try updating the async data on your nav links to something like this so it's unique across pages?

const { data: page } = useAsyncData(`programm/${route.params.uid}`, () =>
  prismic.client.getByUID("page", route.params.uid as string)
);

Thanks.