diff --git a/src/components/services/widget/container.jsx b/src/components/services/widget/container.jsx
index c89047c9..f4d8c13e 100644
--- a/src/components/services/widget/container.jsx
+++ b/src/components/services/widget/container.jsx
@@ -33,5 +33,5 @@ export default function Container({ error = false, children, service }) {
}));
}
- return
{visibleChildren.slice(0, 4)}
;
+ return {visibleChildren}
;
}
diff --git a/src/components/tasklist/taskbox.jsx b/src/components/tasklist/taskbox.jsx
index a979252f..0616a522 100644
--- a/src/components/tasklist/taskbox.jsx
+++ b/src/components/tasklist/taskbox.jsx
@@ -1,9 +1,7 @@
import {useState} from "react";
export default function TaskBox({submitAction}) {
- // const [tasks, setTasks] = useState(listDetail)
const [formVal, setFormVal] = useState("")
- // let inputValue = useRef(undefined)
const handleSubmit = (event) => {
// Stop the form from submitting and refreshing the page.