From 6525c31fff5db2e34e5e253b984fafbe092700fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Falc=C3=B3n?= Date: Mon, 16 Mar 2026 13:38:02 +0000 Subject: [PATCH] chore: remove unused LEAD_REDIRECT_URL env var (#231) ## Summary - Removes `LEAD_REDIRECT_URL` from `.env.example` and `config/landing.php` as it was never referenced anywhere in the codebase. --- .env.example | 1 - config/landing.php | 12 ------------ 2 files changed, 13 deletions(-) diff --git a/.env.example b/.env.example index 1b6d8348..89663858 100644 --- a/.env.example +++ b/.env.example @@ -70,7 +70,6 @@ AWS_DEFAULT_REGION=us-east-1 AWS_BUCKET= AWS_USE_PATH_STYLE_ENDPOINT=false -LEAD_REDIRECT_URL=https://google.es HIDE_AUTH_BUTTONS=false VITE_APP_NAME="${APP_NAME}" diff --git a/config/landing.php b/config/landing.php index 058c790e..0875b458 100644 --- a/config/landing.php +++ b/config/landing.php @@ -14,16 +14,4 @@ return [ 'hide_auth_buttons' => env('HIDE_AUTH_BUTTONS', false), - /* - |-------------------------------------------------------------------------- - | Lead Redirect URL - |-------------------------------------------------------------------------- - | - | The external URL to redirect users to after they submit their email - | on the landing page. - | - */ - - 'lead_redirect_url' => env('LEAD_REDIRECT_URL', null), - ];