Skip to content

Commit 9089ab8

Browse files
committed
hide the terminusCR team
1 parent 972a3c6 commit 9089ab8

File tree

1 file changed

+2
-1
lines changed
  • packages/tdb-dashboard/src/pages

1 file changed

+2
-1
lines changed

packages/tdb-dashboard/src/pages/Home.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export const Home = () => {
4444
</h3>
4545
<Row>
4646
{teamList.map((item,index) =>{
47+
if(item.name!=="terminusCR"){
4748
return <Col md={4} className="py-2 doc-summary-card" key={`key___${index}`}>
4849
<Button id={item.name} className="bg-transparent border-0 p-0 w-100" onClick={(e) => changeOrganizationHandler(item.name)}>
4950
<Card bg="dark" style={{maxHeight: "220px", cursor: "pointer"}} >
@@ -58,7 +59,7 @@ export const Home = () => {
5859
</Card>
5960
</Button>
6061
</Col>
61-
})}
62+
}})}
6263
</Row>
6364
</Col>
6465
</Container>

0 commit comments

Comments
 (0)