File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,8 @@ On The Web
259
259
externals . map ( external => (
260
260
< ExternalLink
261
261
data = { external . data }
262
- key = { external . type }
262
+ key = { external . type !== 'weblink'
263
+ ? external . type : `${ external . type } -${ external . data . key } ` }
263
264
type = { external . type }
264
265
/>
265
266
) )
Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ function mapDispatchToProps(dispatch) {
382
382
getMemberAchievements : ( handle ) => {
383
383
const uuid = shortId ( ) ;
384
384
dispatch ( members . getAchievementsInit ( handle , uuid ) ) ;
385
- dispatch ( members . getAchievementsDone ( handle , uuid ) ) ;
385
+ dispatch ( members . getAchievementsV3Done ( handle , uuid ) ) ;
386
386
} ,
387
387
getMemberFinances : ( handle , tokenV3 ) => {
388
388
const uuid = shortId ( ) ;
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ function mapDispatchToProps(dispatch) {
121
121
dispatch ( a . getInfoInit ( ) ) ;
122
122
dispatch ( a . getSkillsInit ( ) ) ;
123
123
dispatch ( a . getStatsInit ( ) ) ;
124
- dispatch ( a . getAchievementsDone ( handle ) ) ;
124
+ dispatch ( a . getAchievementsV3Done ( handle ) ) ;
125
125
dispatch ( a . getExternalAccountsDone ( handle ) ) ;
126
126
dispatch ( a . getExternalLinksDone ( handle ) ) ;
127
127
dispatch ( a . getInfoDone ( handle ) ) ;
You can’t perform that action at this time.
0 commit comments