Remove visiblechildren slice

Closes #1512
This commit is contained in:
shamoon 2023-05-17 14:23:03 -07:00
parent d87c5e100d
commit be7aa5835a

View file

@ -33,5 +33,5 @@ export default function Container({ error = false, children, service }) {
}));
}
return <div className="relative flex flex-row w-full">{visibleChildren?.slice(0, 4)}</div>;
return <div className="relative flex flex-row w-full">{visibleChildren}</div>;
}