Skip to content

Commit 0eecfe8

Browse files
Fixes unhandled match case error (#1513)
* Fix unhandled match case error * remove unneeded match option --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent f5a6bb4 commit 0eecfe8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

stubs/livewire/resources/views/components/dropdown.blade.php

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
$width = match ($width) {
1212
'48' => 'w-48',
1313
'60' => 'w-60',
14+
default => 'w-48',
1415
};
1516
@endphp
1617

0 commit comments

Comments
 (0)