mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
Remove mapHeight and mapWidth prop validation since they're no longer in use
This commit is contained in:
parent
aa25ee9d38
commit
df27950a31
1 changed files with 3 additions and 3 deletions
|
@ -75,9 +75,9 @@ const WorldMap = props => (
|
||||||
WorldMap.propTypes = {
|
WorldMap.propTypes = {
|
||||||
colorIndex: PropTypes.arrayOf(PropTypes.string),
|
colorIndex: PropTypes.arrayOf(PropTypes.string),
|
||||||
countryData: PropTypes.arrayOf(PropTypes.string),
|
countryData: PropTypes.arrayOf(PropTypes.string),
|
||||||
countryNames: PropTypes.arrayOf(PropTypes.string),
|
countryNames: PropTypes.arrayOf(PropTypes.string)
|
||||||
mapHeight: PropTypes.number,
|
// mapHeight: PropTypes.number,
|
||||||
mapWidth: PropTypes.number
|
// mapWidth: PropTypes.number
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = WorldMap;
|
module.exports = WorldMap;
|
||||||
|
|
Loading…
Reference in a new issue