Skip to content

Commit 4984d84

Browse files
committed
fix: typo (spaces)
1 parent b43be26 commit 4984d84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const sex = ["man", "woman"];
1515
const faceColor = ["#F9C9B6", "#AC6651"];
1616
const earSize = ["small", "big"];
1717
const hairColor = ["#000", "#fff", "#77311D", "#FC909F", "#D2EFF3", "#506AF4", "#F48150"];
18-
const hairStyleMan = ["normal", "thick", "mohawk","beanie"];
18+
const hairStyleMan = ["normal", "thick", "mohawk", "beanie"];
1919
const hairStyleWoman = ["normal", "womanLong", "womanShort"];
2020
const eyeBrowWoman = ["up", "upWoman"];
2121
const eyeStyle = ["circle", "oval", "smile"];
@@ -46,7 +46,7 @@ export default class ReactNiceAvatar extends Component {
4646
faceColor: PropTypes.string,
4747
earSize: PropTypes.oneOf(["small", "big"]),
4848
hairColor: PropTypes.string,
49-
hairStyle: PropTypes.oneOf(["normal", "thick", "mohawk", "womanLong", "womanShort","beanie"]),
49+
hairStyle: PropTypes.oneOf(["normal", "thick", "mohawk", "womanLong", "womanShort", "beanie"]),
5050
hairColorRandom: PropTypes.bool,
5151
eyeStyle: PropTypes.oneOf(["circle", "oval", "smile"]),
5252
glassesStyle: PropTypes.oneOf(["round", "square", "none"]),

0 commit comments

Comments
 (0)