From 941c168486bd7b19ef33b8a4bbed9706d1b0c304 Mon Sep 17 00:00:00 2001 From: David Ralph Date: Thu, 9 Sep 2021 15:18:59 +0100 Subject: [PATCH] fix: about tab images --- .../modals/main/settings/sections/About.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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} ))}