From a0ea6647eb4437ec608a71e3137f6f2923dffc1a Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 27 Jun 2023 12:40:45 -0300 Subject: [PATCH] Initial changes on form modal --- src/frontend/src/modals/formModal/index.tsx | 31 ++++++++++----------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/src/frontend/src/modals/formModal/index.tsx b/src/frontend/src/modals/formModal/index.tsx index 7fc0cb5e7..7fcb32cc8 100644 --- a/src/frontend/src/modals/formModal/index.tsx +++ b/src/frontend/src/modals/formModal/index.tsx @@ -16,6 +16,8 @@ import { dark } from "@mui/material/styles/createPalette"; import { CODE_PROMPT_DIALOG_SUBTITLE } from "../../constants"; import { postValidateCode } from "../../controllers/API"; import { Button } from "../../components/ui/button"; +import { Input } from "../../components/ui/input"; +import { Label } from "../../components/ui/label"; export default function FormModal({ flow, @@ -321,7 +323,7 @@ export default function FormModal({ return ( - + Chat Form @@ -330,24 +332,21 @@ export default function FormModal({ aria-hidden="true" /> - {CODE_PROMPT_DIALOG_SUBTITLE} -
- teste +
+
+
+ + +
+
+
+
+ teste +
+
- - - -
);