Skip to content

Commit

Permalink
nit: preformed > performed
Browse files Browse the repository at this point in the history
  • Loading branch information
ScuffedNewt committed Jul 8, 2024
1 parent b78dfca commit 3d03587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Middleware/PostRequestThrottleMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function handle(Request $request, Closure $next): Response {

if (RateLimiter::tooManyAttempts($key, $maxAttempts)) {
flash('Too many requests - please try again later.')->error()->important();
flash('Your initial action has likely been preformed successfully. Please check to ensure this is the case before trying again.')->success()->important();
flash('Your initial action has likely been performed successfully. Please check to ensure this is the case before trying again.')->success()->important();

if ($request->user() && config('lorekeeper.settings.site_logging_webhook')) {
$webhookCooldown = 120;
Expand Down

0 comments on commit 3d03587

Please sign in to comment.