From 361fd08828121a2fc2f24fd103087e48ef709580 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 25 Jul 2023 15:16:24 -0300 Subject: [PATCH] Formatting --- .../src/components/inputListComponent/index.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/frontend/src/components/inputListComponent/index.tsx b/src/frontend/src/components/inputListComponent/index.tsx index 1bda41333..13f5f7cca 100644 --- a/src/frontend/src/components/inputListComponent/index.tsx +++ b/src/frontend/src/components/inputListComponent/index.tsx @@ -1,10 +1,10 @@ import { useEffect } from "react"; import { InputListComponentType } from "../../types/components"; -import { Input } from "../ui/input"; -import { classNames } from "../../utils/utils"; import _ from "lodash"; +import { classNames } from "../../utils/utils"; import IconComponent from "../genericIconComponent"; +import { Input } from "../ui/input"; export default function InputListComponent({ value, @@ -19,13 +19,12 @@ export default function InputListComponent({ }, [disabled]); return ( -
1 && editNode ? "my-1" : "", - "flex flex-col gap-3" - ) - }> +
1 && editNode ? "my-1" : "", + "flex flex-col gap-3" + )} + > {value.map((i, idx) => { return (