Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/react-native/Libraries/StyleSheet/processFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function processFilter(
result.push(filterFunction);
} else {
// If any primitive is invalid then apply none of the filters. This is how
// web works and makes it clear that something is wrong becuase no
// web works and makes it clear that something is wrong because no
// graphical effects are happening.
return [];
}
Expand All @@ -110,7 +110,7 @@ export default function processFilter(
result.push(resultObject);
} else {
// If any primitive is invalid then apply none of the filters. This is how
// web works and makes it clear that something is wrong becuase no
// web works and makes it clear that something is wrong because no
// graphical effects are happening.
return [];
}
Expand Down
Loading