Profile page UI and functionality implemented

This commit is contained in:
adilallo
2026-04-25 17:57:58 -06:00
parent 7dd2562bae
commit 68517796a9
103 changed files with 4439 additions and 1476 deletions
+7
View File
@@ -46,4 +46,11 @@ describe("TextInput (size tests)", () => {
expect(input).toHaveClass("h-[32px]");
});
it("forwards maxLength to the native input", () => {
const { container } = render(
<TextInput label="Test" maxLength={200} />,
);
const input = container.querySelector("input");
expect(input).toHaveAttribute("maxLength", "200");
});
});