diff --git a/CHANGELOG.md b/CHANGELOG.md index 012fd54f8..f17e7a85a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.3.33] - 2024.11.07 ### Fixed - Affirm Delivery button on offer claim page didn't work. +- Plans were not showing by default on project page. -## [0.3.32] - 2024.11.06 +## [0.3.32] - 2024.11.06 - 9a3fa38a3fd28f977e06f0265fc39e635c9c5ccd ### Added - New offers to user & to user's projects diff --git a/README.md b/README.md index a1742c33a..5e5d07881 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,9 @@ npm run test-all * Commit everything (since the commit hash is used the app). -* Record what version is currently on production. +* Put the commit hash in the changelog (which will help you remember to bump the version later). + +* Record what version is currently on production in docs. * Run the correct build: diff --git a/src/views/ProjectsView.vue b/src/views/ProjectsView.vue index 2ea77aa0a..d6887d13f 100644 --- a/src/views/ProjectsView.vue +++ b/src/views/ProjectsView.vue @@ -340,7 +340,7 @@ export default class ProjectsView extends Vue { console.error("No accounts found."); this.errNote("You need an identifier to load your projects."); } else { - await this.loadOffers(); + await this.loadProjects(); } } catch (err) { console.error("Error initializing:", err); diff --git a/test-playwright/20-create-project.spec.ts b/test-playwright/20-create-project.spec.ts index ca1242ea2..4127f11e3 100644 --- a/test-playwright/20-create-project.spec.ts +++ b/test-playwright/20-create-project.spec.ts @@ -64,7 +64,7 @@ test('Create new project, then search for it', async ({ page }) => { // Search for newly-created project in /projects await page.goto('./projects'); - await page.locator('ul#listProjects li').filter({ hasText: finalTitle }); + await expect(page.locator('ul#listProjects li').filter({ hasText: finalTitle })).toBeVisible(); // Search for newly-created project in /discover await page.goto('./discover');