File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/react-email/src/actions/email-validation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ export const checkCompatibility = async (
278
278
279
279
if ( cssEntryType === 'full property' ) {
280
280
if (
281
- property . name === snakeToCamel ( entryFullProperty ! . name ) &&
281
+ snakeToCamel ( property . name ) === snakeToCamel ( entryFullProperty ! . name ) &&
282
282
property . value === entryFullProperty ! . value
283
283
) {
284
284
addToInsights ( property ) ;
@@ -306,7 +306,7 @@ export const checkCompatibility = async (
306
306
}
307
307
} else if (
308
308
entryProperties . some (
309
- ( propertyName ) => property . name === snakeToCamel ( propertyName ) ,
309
+ ( propertyName ) => snakeToCamel ( property . name ) === snakeToCamel ( propertyName ) ,
310
310
)
311
311
) {
312
312
addToInsights ( property ) ;
You can’t perform that action at this time.
0 commit comments