We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 972a3c6 commit 9089ab8Copy full SHA for 9089ab8
packages/tdb-dashboard/src/pages/Home.js
@@ -44,6 +44,7 @@ export const Home = () => {
44
</h3>
45
<Row>
46
{teamList.map((item,index) =>{
47
+ if(item.name!=="terminusCR"){
48
return <Col md={4} className="py-2 doc-summary-card" key={`key___${index}`}>
49
<Button id={item.name} className="bg-transparent border-0 p-0 w-100" onClick={(e) => changeOrganizationHandler(item.name)}>
50
<Card bg="dark" style={{maxHeight: "220px", cursor: "pointer"}} >
@@ -58,7 +59,7 @@ export const Home = () => {
58
59
</Card>
60
</Button>
61
</Col>
- })}
62
+ }})}
63
</Row>
64
65
</Container>
0 commit comments