Skip to content

Commit 80738dc

Browse files
committed
chore: address PR comments
1 parent 381b2be commit 80738dc

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

packages/frontend/src/helpers/variables.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,7 @@ function getStepName(executionStep: IExecutionStep, allApps: IApp[]) {
7575
caption = app.name
7676
}
7777

78-
return (
79-
step?.config?.stepName ||
80-
caption ||
81-
(appKey || '').charAt(0)?.toUpperCase() + appKey?.slice(1)
82-
)
78+
return caption || (appKey || '').charAt(0)?.toUpperCase() + appKey?.slice(1)
8379
}
8480

8581
function sortVariables(variables: Variable[]): void {

0 commit comments

Comments
 (0)