diff --git a/resources/views/livewire/project/shared/environment-variable/all.blade.php b/resources/views/livewire/project/shared/environment-variable/all.blade.php
index 1fd4160ae..813ee5c52 100644
--- a/resources/views/livewire/project/shared/environment-variable/all.blade.php
+++ b/resources/views/livewire/project/shared/environment-variable/all.blade.php
@@ -14,7 +14,7 @@
@if ($this->resourceClass === 'App\Models\Application' && data_get($this->resource, 'build_pack') !== 'dockercompose')
@endif
@@ -33,6 +33,10 @@
@endif
@if ($view === 'normal')
+
+
Production Environment Variables
+
Environment (secrets) variables for Production.
+
@forelse ($resource->environment_variables as $env)
@@ -41,7 +45,7 @@
@endforelse
@if ($resource->type() === 'application' && $resource->environment_variables_preview->count() > 0 && $showPreview)
-
Preview Deployments
+
Preview Deployments Environment Variables
Environment (secrets) variables for Preview Deployments.
@foreach ($resource->environment_variables_preview as $env)
@@ -54,7 +58,7 @@
@if ($showPreview)
-
@endif