chore: fix typo

remove twitter for one member
This commit is contained in:
Juan Picado @jotadeveloper 2018-08-13 21:39:20 +02:00
parent 0ebdf1e93b
commit 780958ad68
No known key found for this signature in database
GPG Key ID: 18AC54485952D158
2 changed files with 3 additions and 4 deletions

View File

@ -32,7 +32,6 @@ maintainers:
active: true
- name: Priscila
github: priscilawebdev
twitter: priscilawebdev
active: true
- name: Keli Grubb
github: kgrubb

View File

@ -135,11 +135,11 @@ const LanguagesGroups = props => {
);
};
const CrowdingTranslators = props => {
const CrowdinTranslators = props => {
return (
<div className="translation_section">
<h2>
Crowding Translators
Crowdin Translators
</h2>
<div>
<LanguagesGroups languages={props.translators}/>
@ -168,7 +168,7 @@ class Team extends React.Component {
<div class="team_container">
<MemberSection title="Core" members={admons} imageSize={100}/>
<MemberSection title="Maintainers" members={maintainers} imageSize={80}/>
<CrowdingTranslators translators={translators} />
<CrowdinTranslators translators={translators} />
</div>
</Container>
</div>