Skip to content

Commit

Permalink
Fix drop-shadow filter (#45556)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #45556

I missed updating this, and the e2e test we had isn't running, so switching JS objects to camel case broke this.

Changelog: [internal]

Reviewed By: jorge-cab

Differential Revision: D60003747

fbshipit-source-id: 6b7b1138e3ebbfdb982f5a089804351cc4b198ba
  • Loading branch information
NickGerleman authored and facebook-github-bot committed Jul 20, 2024
1 parent 3a5eb19 commit b18635e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ internal object FilterHelper {
for (i in 0 until filters.size()) {
val filter = filters.getMap(i).entryIterator.next()
val filterName = filter.key
if (filterName == "blur" || filterName == "drop-shadow") {
if (filterName == "blur" || filterName == "dropShadow") {
return false
}
}
Expand Down

0 comments on commit b18635e

Please sign in to comment.