From e80a456e04c6c69086b7134923f31e3b747f1a86 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Wed, 13 Nov 2024 14:35:20 -0800 Subject: [PATCH] Remove duplicate method --- app/Livewire/SlackSettingsForm.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/Livewire/SlackSettingsForm.php b/app/Livewire/SlackSettingsForm.php index 8d330bafbe..909b2223ad 100644 --- a/app/Livewire/SlackSettingsForm.php +++ b/app/Livewire/SlackSettingsForm.php @@ -114,10 +114,9 @@ class SlackSettingsForm extends Component $this->webhook_channel = '#NA'; } } - public function updatedwebhookEndpoint() { - $this->teams_webhook_deprecated = !Str::contains($this->webhook_endpoint, 'workflows'); - } - public function updatedwebhookEndpoint() { + + public function updatedwebhookEndpoint() + { $this->teams_webhook_deprecated = !Str::contains($this->webhook_endpoint, 'workflows'); }