Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 67a63e7

Browse files
committed
fix: use proper values for the complexity to fix filtering
1 parent fdecd86 commit 67a63e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/recommendations.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export enum ApplicationComplexity {
2-
Basic,
3-
Medium,
4-
Advanced
2+
Basic = 1,
3+
Medium = 2,
4+
Advanced = 3
55
}
66

77
export interface Step {

0 commit comments

Comments
 (0)