Skip to content

Commit fa391fd

Browse files
committed
removed data
1 parent 6d064de commit fa391fd

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

mlflow-site/src/app/components/Team.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,26 @@ const Team = () => {
55
{
66
name: 'Yiqun Zheng',
77
github: 'https://github.com/yiqunzheng',
8-
98
linkedIn: 'https://www.linkedin.com/in/yiqunzheng/',
109
},
1110
{
1211
name: 'Kyler Chiago',
1312
github: 'https://github.com/Kyler-Chiago',
14-
1513
linkedIn: 'https://www.linkedin.com/in/kyler-chiago/',
1614
},
1715
{
1816
name: 'Austin Fraser',
1917
github: 'https://github.com/austinbfraser',
20-
2118
linkedIn: 'http://www.linkedin.com/in/austin-fraser',
2219
},
2320
{
2421
name: 'Stephany Ho',
2522
github: 'https://github.com/seneyu/',
26-
2723
linkedIn: 'https://www.linkedin.com/in/stephanyho/',
2824
},
2925
{
3026
name: 'Winston Ludlam',
3127
github: 'https://github.com/winjolu/',
32-
3328
linkedIn: 'https://www.linkedin.com/in/wjludlam/',
3429
},
3530
];
@@ -43,7 +38,6 @@ const Team = () => {
4338
key={index}
4439
name={member.name}
4540
github={member.github}
46-
email={member.email}
4741
linkedIn={member.linkedIn}
4842
/>
4943
))}

mlflow-site/src/app/components/TeamCard.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import imageNotFound from '../../assets/imageNotFound.jpg'
44
interface TeamCardProps {
55
name: string;
66
github: string;
7-
email: string;
87
linkedIn: string;
98
}
109
// declare function require(path: string);
@@ -13,7 +12,6 @@ interface TeamCardProps {
1312
const TeamCard: React.FC<TeamCardProps> = ({
1413
name,
1514
github,
16-
email,
1715
linkedIn,
1816
}) => {
1917
return (
@@ -24,7 +22,6 @@ const TeamCard: React.FC<TeamCardProps> = ({
2422
<div>{name}</div>
2523
<div>
2624
<a href={github}>G </a>
27-
<a href={`mailto:${email}`}>E </a>
2825
<a href={linkedIn}>L </a>
2926
</div>
3027
</div>

0 commit comments

Comments
 (0)