remove deprecated url params

This commit is contained in:
Timo
2025-06-30 18:48:47 +02:00
parent 16b2420bbf
commit bed69c0839
2 changed files with 3 additions and 18 deletions

View File

@@ -260,9 +260,5 @@ describe("UrlParams", () => {
);
expect(getUrlParams("?header=none&hideHeader=false").header).toBe("none");
});
it("converts hideHeader to the correct header value", () => {
expect(getUrlParams("?hideHeader=true").header).toBe("none");
expect(getUrlParams("?hideHeader=false").header).toBe("standard");
});
});
});