Skip to content

Commit 34294af

Browse files
committed
fix: replace double quotes with single quotes in transferCss assignment
1 parent e899ef7 commit 34294af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/transformCss.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -780,8 +780,7 @@ async function getConflictClass(
780780
)}`
781781
}
782782

783-
// transferCss = `${match[1]}-${joinWithUnderLine(match[2])}`
784-
783+
transferCss = transferCss.replace(/"/g, '\'')
785784
const _transferCss = prefix
786785
? isNot(prefix)
787786
? `class="${prefix}${transferCss

0 commit comments

Comments
 (0)