Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdlet committed Nov 27, 2020
1 parent 2440344 commit e370113
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/core/src/MapIt/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import leaflet from "leaflet";

import BlockLoader from "../BlockLoader";

import defaultMarkerIcon from '../assets/icons/marker-icon.png';
import defaultMarkerIcon from "../assets/icons/marker-icon.png";
import makeStyles from "../makeStyles";
import useDeepRef from "./useDeepRef";

Expand Down Expand Up @@ -440,7 +440,10 @@ MapIt.propTypes = {
drawChildren: PropTypes.bool,
drawGrandChildren: PropTypes.bool,
drawProfile: PropTypes.bool,
latLng: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.number), PropTypes.shape({})]),
latLng: PropTypes.oneOfType([
PropTypes.arrayOf(PropTypes.number),
PropTypes.shape({}),
]),
markerIcon: PropTypes.string,
geoLevel: PropTypes.string,
geoCode: PropTypes.string,
Expand Down

0 comments on commit e370113

Please sign in to comment.