Skip to content

Commit f93794d

Browse files
committed
refactor(core): update priorities
1 parent 5f7caa2 commit f93794d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
export default function priority() {
22
const priorities = [
3-
"low",
4-
"medium",
5-
"high",
6-
"critical",
7-
"urgent",
8-
"major",
9-
"moderate",
10-
"minor"
3+
'low',
4+
'medium',
5+
'high',
6+
'critical',
7+
'urgent',
8+
'major',
9+
'moderate',
10+
'minor',
1111
];
1212
return priorities[Math.floor(Math.random() * priorities.length)];
1313
}

0 commit comments

Comments
 (0)