Breadcrumbs showing both left < and right > chevrons

I'm using the breadcrumbs blade component directly in a view, like this
 <x-filament::breadcrumbs :breadcrumbs="[
    '/' => 'Home',
    '/tasks' => 'Tasks',
    '/tasks/create' => 'Create Task',
]" />

Which is how the documentation recommends it. But it is showing up in my view like this (attached image)

Why is there a chevron left < next to each item? Shouldn't it just show a chevron right? >

I should note that I'm not using the panels package. Only the forms package in a custom livewire page.
image.png
Solution
Oh, I figured it out. I was missing the dir property in my html document.
<html dir="ltr">
Was this page helpful?