Skip to content

Commit

Permalink
refactor: cleanup for detroit 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Dec 6, 2024
1 parent 8f32492 commit 47acde5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/dto.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def clean_eligible(cls, parcel: ParcelType) -> bool:
return (parcel.assessed_value is not None) and (
parcel.assessed_value
<= {
"detroit": 150000,
"detroit": 200000,
"cook": 225000,
"milwaukee": 150000,
}.get(parcel.__tablename__)
Expand Down
6 changes: 4 additions & 2 deletions src/pages/content/appeal-intro.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ const AppealIntro = ({ region }) => (
please set up an appointment:{" "}
<a target="_blank" rel="noopener noreferrer" href={HELP_LINK}>
Schedule an appointment
</a>
</a>{" "}
{" "}
or call us at 313-438-8698
</em>
</p>
</>
Expand Down Expand Up @@ -194,7 +196,7 @@ const AppealIntro = ({ region }) => (
You occupy that home as your permanent residence (we do not service
landlords); and
</li>
<li>Your home is worth $150,000 or less.</li>
<li>Your home is worth $200,000 or less.</li>
</ul>
)}
{region == "cook" && (
Expand Down
2 changes: 1 addition & 1 deletion tf/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ locals {
state_bucket = "ptap-terraform-state"
domain = "propertytaxproject.com"
github_subjects = ["PropertyTaxProject/ptap:*"]
sheet_name = "Dev PTAP Submissions"
sheet_name = "Dev PTAP Submissions 2025"
mke_sheet_name = "Dev MKE PTAP Submissions"

tags = {
Expand Down

0 comments on commit 47acde5

Please sign in to comment.