diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2a96bb2e51..aff1759cd3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,6 +21,11 @@ and this project adheres to
### Fixed
+- Fixed issue with `Sandboxes` menu item not visible for users without
+ experimental features enabled
+ [#4367](https://github.com/OpenFn/lightning/issues/4367)
+
+
## [2.15.14] - 2026-02-13
## [2.15.14-pre] - 2026-02-11
@@ -50,8 +55,6 @@ and this project adheres to
## [2.15.13] - 2026-02-06
-## [2.15.13-pre1] - 2026-02-05
-
### Fixed
- Search on history page for body and log failing
diff --git a/lib/lightning_web/live/components/menu.ex b/lib/lightning_web/live/components/menu.ex
index 27bfb77fc4..0cfda7ef93 100644
--- a/lib/lightning_web/live/components/menu.ex
+++ b/lib/lightning_web/live/components/menu.ex
@@ -20,15 +20,13 @@ defmodule LightningWeb.Components.Menu do
- <%= if Lightning.Accounts.experimental_features_enabled?(@current_user) do %>
- <.menu_item
- to={~p"/projects/#{@project_id}/sandboxes"}
- active={@active_menu_item == :sandboxes}
- >
-
-
-
- <% end %>
+ <.menu_item
+ to={~p"/projects/#{@project_id}/sandboxes"}
+ active={@active_menu_item == :sandboxes}
+ >
+
+
+
<.menu_item
to={~p"/projects/#{@project_id}/history"}