reverse order of claimed rewards
This commit is contained in:
parent
b2fa6bb3a9
commit
bf2b038632
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ class RewardsPage extends React.PureComponent {
|
||||||
if (claimed && claimed.length) {
|
if (claimed && claimed.length) {
|
||||||
return (
|
return (
|
||||||
<View>
|
<View>
|
||||||
{claimed.map(reward => <RewardCard key={reward.reward_type} reward={reward} />)}
|
{claimed.reverse().map(reward => <RewardCard key={reward.reward_type} reward={reward} />)}
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue