diff --git a/frontend/src/components/manage/ManageStores.jsx b/frontend/src/components/manage/ManageStores.jsx index 6dcab9b..c4133e2 100644 --- a/frontend/src/components/manage/ManageStores.jsx +++ b/frontend/src/components/manage/ManageStores.jsx @@ -134,9 +134,6 @@ export default function ManageStores() { {location.address ? (

{location.address}

) : null} - {location.is_default ? ( -

Default location

- ) : null}
diff --git a/frontend/tests/available-items-catalog.spec.ts b/frontend/tests/available-items-catalog.spec.ts index 729bed2..98f450a 100644 --- a/frontend/tests/available-items-catalog.spec.ts +++ b/frontend/tests/available-items-catalog.spec.ts @@ -122,7 +122,7 @@ test("manage stores opens a modal to edit and delete household store items", asy const storeCard = page.locator(".store-card").filter({ hasText: "Costco" }); await expect(storeCard).toBeVisible(); await expect(storeCard.getByText("Costco", { exact: true })).toHaveCount(1); - await expect(storeCard.getByText("Default location")).toBeVisible(); + await expect(storeCard.getByText("Default location")).toHaveCount(0); await expect(storeCard.getByText("Default shopping location")).toHaveCount(0); await expect(storeCard.getByRole("button", { name: "Manage Items (2)" })).toBeVisible();