We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9282943 commit ebe3761Copy full SHA for ebe3761
libs/extractor/src/extractor/extract_style_from_expression.rs
@@ -217,10 +217,8 @@ pub fn extract_style_from_expression<'a>(
217
StyleSelector::from([&selector.to_string(), *name]).to_string()
218
}
219
} else if name.starts_with("_") {
220
- StyleSelector::from(
221
- to_kebab_case(&name.replace("_", "")).as_str(),
222
- )
223
- .to_string()
+ StyleSelector::from(to_kebab_case(&name.replace("_", "")).as_str())
+ .to_string()
224
} else {
225
StyleSelector::from(name.replace("_", "").as_str()).to_string()
226
0 commit comments