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 4e4c2d5 commit 2b8d1c8Copy full SHA for 2b8d1c8
libs/extractor/src/extractor/extract_style_from_styled.rs
@@ -104,7 +104,7 @@ pub fn extract_style_from_styled<'a>(
104
props_styles.extend(
105
default_class_name
106
.into_iter()
107
- .map(|style| ExtractStyleProp::Static(style)),
+ .map(ExtractStyleProp::Static),
108
);
109
}
110
@@ -165,7 +165,7 @@ pub fn extract_style_from_styled<'a>(
165
styles.extend(
166
167
168
169
170
171
@@ -178,7 +178,7 @@ pub fn extract_style_from_styled<'a>(
178
styles,
179
tag: None,
180
style_order,
181
- style_vars: style_vars,
+ style_vars,
182
props,
183
};
184
0 commit comments