File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -116,16 +116,18 @@ const SponsersConf = () => {
116
116
DIAMOND
117
117
</ h3 >
118
118
< div className = "flex justify-center items-center flex-wrap gap-[40px]" >
119
- { sponsorDiamond . map ( ( sponsor , i ) => (
120
- < a
121
- key = { i }
122
- className = { `zoom-diamond ${ iconClassName } ` }
123
- href = { sponsor . link }
124
- target = "_blank"
125
- >
126
- < sponsor . iconPath />
127
- </ a >
128
- ) ) }
119
+ { sponsorDiamond
120
+ . sort ( ( a , b ) => alphabetSort ( a , b ) )
121
+ . map ( ( sponsor , i ) => (
122
+ < a
123
+ key = { i }
124
+ className = { `zoom-diamond ${ iconClassName } ` }
125
+ href = { sponsor . link }
126
+ target = "_blank"
127
+ >
128
+ < sponsor . iconPath />
129
+ </ a >
130
+ ) ) }
129
131
</ div >
130
132
< h3 className = "text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8" >
131
133
PLATINUM
You can’t perform that action at this time.
0 commit comments