Skip to content

Commit 1142848

Browse files
committed
prettier
1 parent 579d580 commit 1142848

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/tailwindcss-language-service/src/util/stringify.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,7 @@ export function stringifyCss(
6666
.join('\n')
6767
return `${acc}${i === 0 ? '' : '\n'}${propStr}`
6868
}, '')
69-
css += `${indentStr}${augmentClassName(
70-
className,
71-
obj
72-
)} {\n${decls}\n${indentStr}}`
69+
css += `${indentStr}${augmentClassName(className, obj)} {\n${decls}\n${indentStr}}`
7370

7471
for (let i = context.length - 1; i >= 0; i--) {
7572
css += `${indent.repeat(i)}\n}`

0 commit comments

Comments
 (0)