🛠️ **Remove redundant authorization call in meetup update method**

Streamlined the update method by eliminating the unnecessary `authorizeAccess` invocation.
This commit is contained in:
HolgerHatGarKeineNode
2026-05-05 10:00:31 +02:00
parent 8b3005c63b
commit 57b1b21c8f
@@ -146,8 +146,6 @@ class extends Component {
public function updateMeetup(): void
{
$this->authorizeAccess();
$validated = $this->validate([
'name' => ['required', 'string', 'max:255', Rule::unique('meetups')->ignore($this->meetup->id)],
'city_id' => ['nullable', 'exists:cities,id'],