diff --git a/src/EligiblePage.tsx b/src/EligiblePage.tsx index 853aeda..dd71bb6 100644 --- a/src/EligiblePage.tsx +++ b/src/EligiblePage.tsx @@ -23,7 +23,9 @@ const EligiblePage: React.FC = () => {
  • Your mobile phone
  • + + Learn More About Memberships
    diff --git a/src/SearchPage.tsx b/src/SearchPage.tsx index d561a9c..9d8ad92 100644 --- a/src/SearchPage.tsx +++ b/src/SearchPage.tsx @@ -53,6 +53,8 @@ const SearchPage: React.FC = (props: Props) => { try { // Retrieve geocoding data for the given address const censusApiResponse = await geocode({ address }); + // console.log('matchedAddress', censusApiResponse.result.addressMatches[0].matchedAddress); + // Find out if address is eligible and update the page state // TO-DO: refactor into a function (see Use My Location) const addressIsEligible = !!(censusApiResponse && findEligibleAddress(censusApiResponse));