Skip to content

Commit

Permalink
Remove phone number from 409 checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Dickinson committed Dec 4, 2024
1 parent a57738f commit e154366
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/meshapi/views/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,6 @@ def process_join_form(r: JoinFormRequest, request: Optional[Request] = None) ->

changed_info: dict[str, str | int] = {}

if formatted_phone_number and r.phone_number != formatted_phone_number:
logging.warning(f"Changed phone_number: {formatted_phone_number} != {r.phone_number}")
changed_info["phone_number"] = formatted_phone_number

if r.street_address != nyc_addr_info.street_address:
logging.warning(f"Changed street_address: {r.street_address} != {nyc_addr_info.street_address}")
changed_info["street_address"] = nyc_addr_info.street_address
Expand Down

0 comments on commit e154366

Please sign in to comment.