Add missing end keyword

This commit is contained in:
Leni Kadali 2025-01-21 14:41:32 +03:00
parent aabac9badf
commit 8cadb6d983
1 changed files with 3 additions and 1 deletions

View File

@ -34,11 +34,13 @@ class Auth::ConfirmationsController < Devise::ConfirmationsController
flash.now[:alert] = message
render :captcha
return
end
else
check_mcaptcha! do |message|
check_hcaptcha! do |message|
flash.now[:alert] = message
render :captcha
return
end
end
show