diff --git a/striker-ui/components/AnvilNode.tsx b/striker-ui/components/AnvilNode.tsx index 888e4a72..9ac8a98a 100644 --- a/striker-ui/components/AnvilNode.tsx +++ b/striker-ui/components/AnvilNode.tsx @@ -1,6 +1,7 @@ import { Grid, Switch } from '@material-ui/core'; -import AllocationBar from './AllocationBar'; +import InnerPanel from './InnerPanel'; +import ProgressBar from './ProgressBar'; import { BodyText } from './Text'; const AnvilNode = ({ @@ -14,7 +15,7 @@ const AnvilNode = ({ node.map( (n): JSX.Element => { return ( - <> + @@ -29,10 +30,10 @@ const AnvilNode = ({ - + - + ); }, )}