[Bug] Nested Breadcrumbs

Hey,

Nested breadcrumbs aren’t currently displaying, it currently only shows the first one.
Snippet example of the code below, but you can also test this with the code from the documentation and it doesn’t display

<s-page
      heading={`${transferOrder.name} Configuration`}
    >
      <s-link slot="breadcrumb-actions" href="/transfers">
        Transfers
      </s-link>
      <s-link slot="breadcrumb-actions" href={`/transfers/${props.id}`}>
        {transferOrder.name}
      </s-link>

Only the first breadcrumb renders, rather than the full nested list

2 Likes