Skip to content

Commit

Permalink
Fix margin errors
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed Feb 24, 2023
1 parent 7a41d89 commit e198c8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function filterValuesBySides( values, sides ) {
filteredValues.left = values.left;
filteredValues.right = values.right;
}
filteredValues[ side ] = values[ side ];
filteredValues[ side ] = values?.[ side ];
} );

return filteredValues;
Expand Down

0 comments on commit e198c8a

Please sign in to comment.