From 876ed502c979a3fc11e46106287439c3872f1156 Mon Sep 17 00:00:00 2001 From: AustinMroz Date: Tue, 26 May 2026 22:05:26 -0700 Subject: [PATCH 1/2] Mock sign-in request in test (#12482) Mock the sign in request in e2e tests to ensure tests success isn't tied to external variables. --- browser_tests/tests/dialog.spec.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/browser_tests/tests/dialog.spec.ts b/browser_tests/tests/dialog.spec.ts index 9a6889a38b..1569ee3322 100644 --- a/browser_tests/tests/dialog.spec.ts +++ b/browser_tests/tests/dialog.spec.ts @@ -157,6 +157,13 @@ test.describe('Signin dialog', () => { }) test('Sign-in dialog resolves true on login', async ({ comfyPage }) => { + await comfyPage.page.route('**/customers', (route) => + route.fulfill({ + status: 201, + contentType: 'application/json', + body: JSON.stringify({ id: 'test-user-e2e', email: 'test@example.com' }) + }) + ) const dialog = new SignInDialog(comfyPage.page) const { result: dialogResult } = await dialog.openWithResult() From 7599c6a1ca2e884d4b7bb2506c304de9f918c05c Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Tue, 26 May 2026 22:05:36 -0700 Subject: [PATCH 2/2] chore: remove EA logo from website social proof bar (#12477) Removes the EA (Electronic Arts) logo from the client social proof bar on the website. Drops it from the logos list in `SocialProofBarSection.vue` and deletes the now-unused `EA.svg` asset. Co-authored-by: Claude Opus 4.7 (1M context) --- apps/website/public/icons/clients/EA.svg | 3 --- apps/website/src/components/common/SocialProofBarSection.vue | 1 - 2 files changed, 4 deletions(-) delete mode 100644 apps/website/public/icons/clients/EA.svg diff --git a/apps/website/public/icons/clients/EA.svg b/apps/website/public/icons/clients/EA.svg deleted file mode 100644 index 78fc6c94c4..0000000000 --- a/apps/website/public/icons/clients/EA.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apps/website/src/components/common/SocialProofBarSection.vue b/apps/website/src/components/common/SocialProofBarSection.vue index e261a18591..dc901bef9a 100644 --- a/apps/website/src/components/common/SocialProofBarSection.vue +++ b/apps/website/src/components/common/SocialProofBarSection.vue @@ -3,7 +3,6 @@ const logos = [ 'Amazon Studios', 'Apple', 'Autodesk', - 'EA', 'Harman', 'Hp', 'Lucid',