diff --git a/frontend/test/metabase/scenarios/onboarding/auth/forgot_password.cy.spec.js b/frontend/test/metabase/scenarios/onboarding/auth/forgot_password.cy.spec.js
index ffc210572e7702dba32fbc42d19525260a7b71e4..8a722782b40e65d3eedf24981685176938946b16 100644
--- a/frontend/test/metabase/scenarios/onboarding/auth/forgot_password.cy.spec.js
+++ b/frontend/test/metabase/scenarios/onboarding/auth/forgot_password.cy.spec.js
@@ -32,11 +32,9 @@ describe("scenarios > auth > password", { tags: "@external" }, () => {
 
   it("should not show the app bar when previously logged in", () => {
     cy.signInAsAdmin();
-    cy.intercept("GET", "/api/user/current").as("getUser");
 
     cy.visit("/auth/forgot_password");
 
-    cy.get("@getUser.all").should("have.length", 0);
     cy.icon("gear").should("not.exist");
   });
 });