File tree Expand file tree Collapse file tree 1 file changed +1
-19
lines changed
packages/tailwindcss-language-service/src Expand file tree Collapse file tree 1 file changed +1
-19
lines changed Original file line number Diff line number Diff line change @@ -214,25 +214,7 @@ export function completionsFromClassList(
214
214
. map ( ( selector ) => addPixelEquivalentsToMediaQuery ( selector ) )
215
215
. join ( ', ' ) ,
216
216
textEditText : resultingVariants [ resultingVariants . length - 1 ] + sep ,
217
- additionalTextEdits :
218
- shouldSortVariants && resultingVariants . length > 1
219
- ? [
220
- {
221
- newText :
222
- resultingVariants . slice ( 0 , resultingVariants . length - 1 ) . join ( sep ) + sep ,
223
- range : {
224
- start : {
225
- ...classListRange . start ,
226
- character : classListRange . end . character - partialClassName . length ,
227
- } ,
228
- end : {
229
- ...replacementRange . start ,
230
- character : replacementRange . start . character ,
231
- } ,
232
- } ,
233
- } ,
234
- ]
235
- : [ ] ,
217
+ additionalTextEdits : [ ] ,
236
218
} ) ,
237
219
)
238
220
}
You can’t perform that action at this time.
0 commit comments