Skip to content

Commit 466f2d3

Browse files
committed
remove comments
1 parent 155b75a commit 466f2d3

File tree

2 files changed

+0
-2
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components

2 files changed

+0
-2
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/code/code.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ const createHighlightFunction = (
103103
let processedCode = codeToHighlight
104104

105105
processedCode = processedCode.replace(createEnvVarPattern(), (match) => {
106-
// Extract var name from {{VAR_NAME}}
107106
const varName = match.slice(2, -2).trim()
108107
if (shouldHighlightEnvVar(varName)) {
109108
const placeholder = `__ENV_VAR_${placeholders.length}__`

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/condition-input/condition-input.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,6 @@ export function ConditionInput({
11391139
let processedCode = codeToHighlight
11401140

11411141
processedCode = processedCode.replace(createEnvVarPattern(), (match) => {
1142-
// Extract var name from {{VAR_NAME}}
11431142
const varName = match.slice(2, -2).trim()
11441143
if (shouldHighlightEnvVar(varName)) {
11451144
const placeholder = `__ENV_VAR_${placeholders.length}__`

0 commit comments

Comments
 (0)