Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed Jan 31, 2023
1 parent 0ecc13c commit 52d4e32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/blocks/src/store/private-selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function filterElementBlockSupports( blockSuppots, name, element ) {
if (
support === 'textTransform' &&
! name &&
[ 'heading', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ].includes(
! [ 'heading', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ].includes(
element
)
) {
Expand All @@ -56,7 +56,7 @@ function filterElementBlockSupports( blockSuppots, name, element ) {
if (
support === 'letterSpacing' &&
! name &&
[ 'heading', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ].includes(
! [ 'heading', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ].includes(
element
)
) {
Expand Down

0 comments on commit 52d4e32

Please sign in to comment.