change message if all rewards redeemed
Change failed message to: "There are no rewards available at this time, please check back later." This scenario happens when all rewards are claimed. Not sure if it can be encountered any other time.
This commit is contained in:
parent
72ad1552cb
commit
7687f1ff93
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ class RewardsPage extends React.PureComponent {
|
||||||
} else if (!rewards || rewards.length <= 0) {
|
} else if (!rewards || rewards.length <= 0) {
|
||||||
return (
|
return (
|
||||||
<div className="card__content empty">
|
<div className="card__content empty">
|
||||||
{__("Failed to load rewards.")}
|
{__("There are no rewards available at this time, please check back later.")}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue