Skip to content

Commit f57484e

Browse files
Fix retention days label
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 9634cee commit f57484e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: components/moaform/sources/new-submission-instant/new-submission-instant.mjs

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ export default {
2727
label: "Retention Days",
2828
description: "Resend restriction days",
2929
options: [
30-
1,
31-
3,
32-
5,
33-
7,
34-
10,
35-
15,
36-
30,
30+
{ label: "1", value: 1 },
31+
{ label: "3", value: 3 },
32+
{ label: "5", value: 5 },
33+
{ label: "7", value: 7 },
34+
{ label: "10", value: 10 },
35+
{ label: "15", value: 15 },
36+
{ label: "30", value: 30 },
3737
],
3838
optional: true,
3939
},

0 commit comments

Comments
 (0)