From 7a429ee5bba73dd4fea2fcb8aceb4bdfe245947c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 14 Sep 2023 18:49:15 +0200 Subject: [PATCH] fix: rate limit --- app/Http/Livewire/Help.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/Help.php b/app/Http/Livewire/Help.php index 8edd001b4..79d7db1ee 100644 --- a/app/Http/Livewire/Help.php +++ b/app/Http/Livewire/Help.php @@ -28,7 +28,7 @@ class Help extends Component public function submit() { try { - // $this->rateLimit(1, 1); + $this->rateLimit(1, 60); $this->validate(); $subscriptionType = auth()->user()?->subscription?->type() ?? 'Free'; $debug = "Route: {$this->path}";