Skip to content

Commit 4040a25

Browse files
committed
lint
1 parent a731fa1 commit 4040a25

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

apps/sim/lib/workflows/comparison/compare.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,7 @@ export function generateWorkflowDiffSummary(
120120
const varEntries = Object.entries(variables)
121121
result.variableChanges.added = varEntries.length
122122
for (const [id, variable] of varEntries) {
123-
result.variableChanges.addedNames.push(
124-
(variable as { name?: string }).name || id
125-
)
123+
result.variableChanges.addedNames.push((variable as { name?: string }).name || id)
126124
}
127125

128126
result.hasChanges = true

apps/sim/lib/workflows/comparison/resolve-values.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,11 @@ export async function resolveValueForDisplay(
251251
return { original: value, displayLabel: label, resolved: true }
252252
}
253253
} catch (error) {
254-
logger.warn('Failed to resolve dropdown label', { value, subBlockId: context.subBlockId, error })
254+
logger.warn('Failed to resolve dropdown label', {
255+
value,
256+
subBlockId: context.subBlockId,
257+
error,
258+
})
255259
}
256260
}
257261

0 commit comments

Comments
 (0)