From 386de2c76f97e1486d423df84bd41505b6ccfbeb Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Tue, 3 Mar 2026 19:33:04 -0500 Subject: [PATCH] refactor: remove redundant pro tip from environment tab in editor --- frontend/src/components/EditorLayout.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/EditorLayout.tsx b/frontend/src/components/EditorLayout.tsx index 8d08b62b..63e5949e 100644 --- a/frontend/src/components/EditorLayout.tsx +++ b/frontend/src/components/EditorLayout.tsx @@ -1081,7 +1081,6 @@ export default function EditorLayout() {
{activeTab === 'env' && (
- 💡 Pro Tip: Variables defined here are automatically available for substitution in your compose.yaml (e.g., ${'{}'}VAR). To pass them directly into your container, you must add env_file: - .env to your service definition.