Skip to content

Commit 6737cea

Browse files
committed
fixed trailing comma html types
1 parent c0be86f commit 6737cea

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

app/src/redux/HTMLTypes.js

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const HTMLTypes = [
1616
placeHolderLong: '',
1717
// icon: HeaderIcon,
1818
framework: 'reactClassic',
19-
nestable: true
19+
nestable: true,
2020
},
2121
// do not move this separator element out of index 1 in this array
2222
// in componentReducer.ts, separator is referenced as 'initialState.HTMLTypes[1]'
@@ -29,7 +29,7 @@ const HTMLTypes = [
2929
placeHolderLong: '',
3030
icon: '',
3131
framework: '',
32-
nestable: true
32+
nestable: true,
3333
},
3434
{
3535
id: 1,
@@ -40,7 +40,7 @@ const HTMLTypes = [
4040
placeHolderLong: '',
4141
icon: ImageIcon,
4242
framework: 'reactClassic',
43-
nestable: false
43+
nestable: false,
4444
},
4545
{
4646
id: 2,
@@ -51,7 +51,7 @@ const HTMLTypes = [
5151
placeHolderLong: '',
5252
icon: FormIcon,
5353
framework: 'reactClassic',
54-
nestable: true
54+
nestable: true,
5555
},
5656
{
5757
id: 4,
@@ -62,7 +62,7 @@ const HTMLTypes = [
6262
placeHolderLong: '',
6363
icon: ButtonIcon,
6464
framework: 'reactClassic',
65-
nestable: false
65+
nestable: false,
6666
},
6767
{
6868
id: 6,
@@ -73,7 +73,7 @@ const HTMLTypes = [
7373
placeHolderLong: '',
7474
icon: LinkIcon,
7575
framework: 'reactClassic',
76-
nestable: false
76+
nestable: false,
7777
},
7878
{
7979
id: 8,
@@ -84,7 +84,7 @@ const HTMLTypes = [
8484
placeHolderLong: '',
8585
icon: ParagraphIcon,
8686
framework: 'reactClassic',
87-
nestable: false
87+
nestable: false,
8888
},
8989
{
9090
id: 9,
@@ -95,7 +95,7 @@ const HTMLTypes = [
9595
placeHolderLong: '',
9696
icon: HeaderIcon,
9797
framework: 'reactClassic',
98-
nestable: false
98+
nestable: false,
9999
},
100100
{
101101
id: 10,
@@ -106,7 +106,7 @@ const HTMLTypes = [
106106
placeHolderLong: '',
107107
icon: HeaderIcon,
108108
framework: 'reactClassic',
109-
nestable: false
109+
nestable: false,
110110
},
111111
{
112112
id: 5,
@@ -117,7 +117,7 @@ const HTMLTypes = [
117117
placeHolderLong: '',
118118
icon: HeaderIcon,
119119
framework: 'reactClassic',
120-
nestable: false
120+
nestable: false,
121121
},
122122
{
123123
id: 12,
@@ -128,7 +128,7 @@ const HTMLTypes = [
128128
placeHolderLong: '',
129129
icon: HeaderIcon,
130130
framework: 'reactClassic',
131-
nestable: false
131+
nestable: false,
132132
},
133133
{
134134
id: 13,
@@ -139,7 +139,7 @@ const HTMLTypes = [
139139
placeHolderLong: '',
140140
icon: HeaderIcon,
141141
framework: 'reactClassic',
142-
nestable: false
142+
nestable: false,
143143
},
144144
{
145145
id: 14,
@@ -150,7 +150,7 @@ const HTMLTypes = [
150150
placeHolderLong: '',
151151
icon: ListIcon,
152152
framework: 'reactClassic',
153-
nestable: true
153+
nestable: true,
154154
},
155155
{
156156
id: 15,
@@ -161,7 +161,7 @@ const HTMLTypes = [
161161
placeHolderLong: '',
162162
icon: ListIcon,
163163
framework: 'reactClassic',
164-
nestable: true
164+
nestable: true,
165165
},
166166
{
167167
id: 16,
@@ -172,7 +172,7 @@ const HTMLTypes = [
172172
placeHolderLong: '',
173173
icon: ListIcon,
174174
framework: 'reactClassic',
175-
nestable: true
175+
nestable: true,
176176
},
177177
{
178178
id: 3,
@@ -183,7 +183,7 @@ const HTMLTypes = [
183183
placeHolderLong: '',
184184
icon: ListIcon,
185185
framework: 'reactClassic',
186-
nestable: true
186+
nestable: true,
187187
},
188188
{
189189
id: 17,
@@ -194,7 +194,7 @@ const HTMLTypes = [
194194
placeHolderLong: '',
195195
icon: ListIcon,
196196
framework: 'reactClassic',
197-
nestable: true
197+
nestable: true,
198198
},
199199
{
200200
id: -1,
@@ -205,7 +205,7 @@ const HTMLTypes = [
205205
placeHolderLong: '',
206206
icon: LinkIcon,
207207
framework: 'reactClassic',
208-
nestable: true
208+
nestable: true,
209209
},
210210
{
211211
id: 18,
@@ -216,7 +216,7 @@ const HTMLTypes = [
216216
placeHolderLong: '',
217217
icon: ListIcon,
218218
framework: 'reactClassic',
219-
nestable: true
219+
nestable: true,
220220
},
221221
{
222222
id: 19,
@@ -227,7 +227,7 @@ const HTMLTypes = [
227227
placeHolderLong: '',
228228
icon: ListIcon,
229229
framework: 'nextjs',
230-
nestable: true
230+
nestable: true,
231231
},
232232
{
233233
id: 20,
@@ -238,7 +238,7 @@ const HTMLTypes = [
238238
placeHolderLong: '',
239239
icon: ListIcon,
240240
framework: 'nextjs',
241-
nestable: false
242-
}
241+
nestable: false,
242+
},
243243
];
244244
export default HTMLTypes;

0 commit comments

Comments
 (0)