refactor(switch-team): remove label from team selection component for cleaner UI

This commit is contained in:
Andras Bacsai 2025-10-08 19:50:19 +02:00
parent 3323302021
commit 640f753aae

View file

@ -1,4 +1,4 @@
<x-forms.select wire:model.live="selectedTeamId" label="Current Team">
<x-forms.select wire:model.live="selectedTeamId">
<option value="default" disabled selected>Switch team</option>
@foreach (auth()->user()->teams as $team)
<option value="{{ $team->id }}">{{ $team->name }}</option>