remove unnecessary things

This commit is contained in:
Andras Bacsai
2024-12-03 14:09:51 +01:00
parent 869eaedaf5
commit ec9315f24e
11 changed files with 12 additions and 19 deletions

View File

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