File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
src/shared/components/ProfilePage Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import styles from './styles.scss';
23
23
import Skills from './Skills' ;
24
24
import MemberInfo from './MemberInfo' ;
25
25
import Activity from './Activity' ;
26
+ // import Awards from './Awards';
26
27
27
28
/**
28
29
* Inspects a subtrack and determines if the member is active
@@ -148,6 +149,7 @@ class ProfilePage extends React.Component {
148
149
lookupData,
149
150
handleParam,
150
151
meta,
152
+ // rewards,
151
153
} = this . props ;
152
154
153
155
const {
@@ -224,6 +226,11 @@ class ProfilePage extends React.Component {
224
226
</ div >
225
227
</ div >
226
228
</ div >
229
+ { /* { */ }
230
+ { /* (rewards || []).length ? ( */ }
231
+ { /* <Awards rewards={rewards} /> */ }
232
+ { /* ) : null */ }
233
+ { /* } */ }
227
234
< Activity
228
235
memberStats = { stats }
229
236
hasMM = { hasMM }
@@ -280,6 +287,7 @@ ProfilePage.defaultProps = {
280
287
challenges : null ,
281
288
skills : null ,
282
289
stats : null ,
290
+ // rewards: [],
283
291
} ;
284
292
285
293
ProfilePage . propTypes = {
@@ -293,6 +301,7 @@ ProfilePage.propTypes = {
293
301
lookupData : PT . shape ( ) . isRequired ,
294
302
handleParam : PT . string . isRequired ,
295
303
meta : PT . shape ( ) . isRequired ,
304
+ // rewards: PT.arrayOf(PT.shape()),
296
305
clearSubtrackChallenges : PT . func . isRequired ,
297
306
} ;
298
307
You can’t perform that action at this time.
0 commit comments