From bf23389dba1cd5fcfc561025e5523dc194b31987 Mon Sep 17 00:00:00 2001 From: Boy132 Date: Sun, 18 Aug 2024 16:11:40 +0200 Subject: [PATCH] Fix default value for mailgun secret (#552) --- app/Filament/Pages/Settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Pages/Settings.php b/app/Filament/Pages/Settings.php index aec3819c4..ad9ea96ba 100644 --- a/app/Filament/Pages/Settings.php +++ b/app/Filament/Pages/Settings.php @@ -298,7 +298,7 @@ class Settings extends Page implements HasForms TextInput::make('MAILGUN_SECRET') ->label('Secret') ->required() - ->default(env('MAIL_USERNAME', config('services.mailgun.secret'))), + ->default(env('MAILGUN_SECRET', config('services.mailgun.secret'))), TextInput::make('MAILGUN_ENDPOINT') ->label('Endpoint') ->required()