Make OIDC identity reset consistent with EX (#29854)

* Allow providing an empty title to InteractiveAuthDialog

* Make OIDC identity reset consistent with EX

* Translation changes for OIDC Identity reset (already added to Localazy)

* Fix auth tests for new wording 'Continue to account'
This commit is contained in:
Andy Balaam
2025-05-02 09:20:22 +00:00
committed by GitHub
parent 8e63c6618c
commit 72429c1350
6 changed files with 58 additions and 23 deletions
@@ -87,7 +87,7 @@ describe("<MasUnlockCrossSigningAuthEntry/>", () => {
const spy = jest.spyOn(global.window, "open");
renderAuth();
fireEvent.click(screen.getByRole("button", { name: "Go to your account" }));
fireEvent.click(screen.getByRole("button", { name: "Continue to account" }));
expect(spy).toHaveBeenCalledWith("https://example.com", "_blank");
});