diff --git a/webapp/src/components/DataPage.tsx b/webapp/src/components/DataPage.tsx index fb6fa2746bb9f0afc8e116c450e27fb3c64de4b5..ba9b1997c94b15e20a9ef52cd6dc3bff2fae344f 100644 --- a/webapp/src/components/DataPage.tsx +++ b/webapp/src/components/DataPage.tsx @@ -22,17 +22,15 @@ function DataPage({ title, filter, children, category }: inputProps): ReactEleme </PageHeader> <SectionNavigation activeCategory={category} /> <Container className="grow"> - <Col xs={9}> - <Row> - <h3 className="m-4">{title}</h3> - </Row> - <Row> - {filter} - </Row> - <Row> - {children} - </Row> - </Col> + <Row> + <h3 className="m-4">{title}</h3> + </Row> + <Row> + {filter} + </Row> + <Row> + {children} + </Row> </Container> </> );