From df7245403baafb33a0f75fd704b18c28aefc4548 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Mon, 7 Apr 2025 16:14:47 +0200 Subject: [PATCH] Set showNextOtp default to True --- config/2fauth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/2fauth.php b/config/2fauth.php index 66cd3acd..ae3b60bf 100644 --- a/config/2fauth.php +++ b/config/2fauth.php @@ -5,7 +5,7 @@ use Illuminate\Support\Arr; $preferences = [ 'showOtpAsDot' => envUnlessEmpty('USERPREF_DEFAULT__SHOW_OTP_AS_DOT', false), - 'showNextOtp' => envUnlessEmpty('USERPREF_DEFAULT__SHOW_NEXT_OTP', false), + 'showNextOtp' => envUnlessEmpty('USERPREF_DEFAULT__SHOW_NEXT_OTP', true), 'revealDottedOTP' => envUnlessEmpty('USERPREF_DEFAULT__REVEAL_DOTTED_OTP', false), 'closeOtpOnCopy' => envUnlessEmpty('USERPREF_DEFAULT__CLOSE_OTP_ON_COPY', false), 'copyOtpOnDisplay' => envUnlessEmpty('USERPREF_DEFAULT__COPY_OTP_ON_DISPLAY', false),