diff --git a/src/components/BuildingListTable/index.js b/src/components/BuildingListTable/index.js index c5cedb2c344ccc09e72a3af9b135f56adde83519..dd67a3c6efbdc2eea851638104e25d0716fc32f4 100644 --- a/src/components/BuildingListTable/index.js +++ b/src/components/BuildingListTable/index.js @@ -30,6 +30,7 @@ export default function BuildingListTable({ buildings, error }) { > {building.address} {building.bbl} + {building.bin_id} {building.borough} {building.building_id} {building.lot_id} @@ -56,6 +57,7 @@ BuildingListTable.propTypes = { buildings: PropTypes.arrayOf(PropTypes.shape({ address: PropTypes.state, bbl: PropTypes.number, + bin_id: PropTypes.number, building_id: PropTypes.number, lot_id: PropTypes.number, borough: PropTypes.string, diff --git a/src/containers/Building/propTypes.js b/src/containers/Building/propTypes.js index 6cdf609e2a65e0332b25b5d8886f9ee109565b77..98e5b02bb340b77bfa4446082bfcfd91c51c2314 100644 --- a/src/containers/Building/propTypes.js +++ b/src/containers/Building/propTypes.js @@ -4,6 +4,7 @@ export default PropTypes.shape({ overview: PropTypes.shape({ address: PropTypes.string, bbl: PropTypes.number, + bin_id: PropTypes.number, building_id: PropTypes.number, lot_id: PropTypes.number, borough: PropTypes.string,