diff --git a/src/components/modals/main/settings/sections/About.jsx b/src/components/modals/main/settings/sections/About.jsx index 69f8b481..93a57f75 100644 --- a/src/components/modals/main/settings/sections/About.jsx +++ b/src/components/modals/main/settings/sections/About.jsx @@ -111,15 +111,15 @@ export default class About extends PureComponent {

{this.language.contributors}

{this.state.loading}

- {this.state.contributors.map(({ handle, avatar, login }) => ( - - {handle} + {this.state.contributors.map(({ login, id }) => ( + + {login} ))} { // for those who contributed without opening a pull request - this.state.other_contributors.map(({ handle, avatar, login }) => ( - - {handle} + this.state.other_contributors.map(({ login, avatar_url }) => ( + + {login} ))} @@ -127,7 +127,7 @@ export default class About extends PureComponent {

{this.state.loading}

{this.state.sponsors.map(({ handle, avatar }) => ( - {handle} + {handle} ))}