Skip to content

Commit 7982976

Browse files
committed
fix: double stringify
1 parent f814369 commit 7982976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/plugin-nativewind/src/loader.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function nativeWindLoader(
1616
const callback = this.async();
1717

1818
try {
19-
const jsCss = stringify(cssToReactNativeRuntime(source));
19+
const jsCss = cssToReactNativeRuntime(source);
2020
const code = dedent`
2121
import { StyleSheet } from "nativewind";
2222
StyleSheet.registerCompiled((${stringify(jsCss)}));

0 commit comments

Comments
 (0)