Skip to content

Commit 82d6b61

Browse files
committed
Correct spelling
1 parent c1c6155 commit 82d6b61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/injectable/applyAnimatedValues.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ const prefix = (prop) => {
4444
};
4545

4646
const ensureValue = (prop, value) => {
47-
const whitaList = ['translateX', 'translateY', 'translateZ', 'perspective'];
48-
if (!isNaN(value) && whitaList.indexOf(prop) > -1) {
47+
const whiteList = ['translateX', 'translateY', 'translateZ', 'perspective'];
48+
if (!isNaN(value) && whiteList.indexOf(prop) > -1) {
4949
return `${value}px`;
5050
}
5151
return value;

0 commit comments

Comments
 (0)