laravel / jetstream

Tailwind scaffolding for the Laravel framework.
https://jetstream.laravel.com
MIT License
3.98k stars 822 forks source link

Fixes unhandled match case error #1513

Closed inmanturbo closed 4 months ago

inmanturbo commented 4 months ago

This PR fixes a bug introduced in #1509 that throws an UnhandledMatchError on fresh install (livewire with teams).

The Teams dropdown uses width="60" which results in error as there's no case to match

                <!-- Teams Dropdown -->
                @if (Laravel\Jetstream\Jetstream::hasTeamFeatures())
                    <div class="ms-3 relative">
                        <x-dropdown align="right" width="60">

Screenshot from 2024-07-10 01-22-15

fixes #1514