Update text input component

This commit is contained in:
adilallo
2026-02-04 11:29:51 -07:00
parent d8fa525514
commit 255f16477c
20 changed files with 589 additions and 949 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import { screen, fireEvent, waitFor } from "@testing-library/react";
import "@testing-library/jest-dom/vitest";
import { renderWithProviders } from "../utils/test-utils";
import Create from "../../app/components/Create";
import Input from "../../app/components/Input";
import TextInput from "../../app/components/TextInput";
type CreateProps = React.ComponentProps<typeof Create>;
@@ -167,7 +167,7 @@ describe("Create", () => {
it("traps focus within create dialog", async () => {
renderWithProviders(
<Create {...defaultProps}>
<Input label="Test Input" />
<TextInput label="Test Input" />
</Create>,
);