Skip to content

Commit

Permalink
fix: readding minimum monthly income verbiage (#655)
Browse files Browse the repository at this point in the history
* fix: readding minimum monthly income verbiage

* fix: update to fix failing test
  • Loading branch information
YazeedLoonat authored Dec 16, 2023
1 parent 048c593 commit 64b34d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sites/partners/cypress/e2e/default/03-listing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ describe("Listing Management Tests", () => {
cy.getByID("buildingAddress.state").contains("CA")
cy.getByID("buildingAddress.zipCode").contains(listing["buildingAddress.zipCode"])
cy.get("#yearBuilt").contains(listing["yearBuilt"])
cy.get("#longitude").contains("-122.40078")
cy.get("#latitude").contains("37.79006")
cy.getByID("longitude").should("include.text", "-122.4")
cy.getByID("latitude").should("include.text", "37.7")
cy.get("#reservedCommunityType").contains(listing["reservedCommunityType.id"])
cy.get("#reservedCommunityDescription").contains(listing["reservedCommunityDescription"])
cy.getByTestId("unit-types-or-individual").contains("Unit Types")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ const UnitForm = ({ onSubmit, onClose, defaultUnit, nextId, draft }: UnitFormPro
<Field
id="monthlyIncomeMin"
name="monthlyIncomeMin"
label={t("t.minimumIncome")}
label={t("t.monthlyMinimumIncome")}
placeholder="0.00"
register={register}
type="number"
Expand Down

0 comments on commit 64b34d4

Please sign in to comment.