hotfix: account for custom endpoint possible conditions in stakehistory (#16151)
This commit is contained in:
parent
d2e4503be2
commit
a1f1f573d5
|
@ -98,7 +98,11 @@ function StakingComponent() {
|
||||||
return <LoadingCard />;
|
return <LoadingCard />;
|
||||||
} else if (typeof supply === "string") {
|
} else if (typeof supply === "string") {
|
||||||
return <ErrorCard text={supply} retry={fetchData} />;
|
return <ErrorCard text={supply} retry={fetchData} />;
|
||||||
} else if (stakeInfo.status === FetchStatus.FetchFailed) {
|
} else if (
|
||||||
|
stakeInfo.status === FetchStatus.FetchFailed ||
|
||||||
|
(stakeInfo.status === FetchStatus.Fetched &&
|
||||||
|
(!stakeHistory.length || stakeHistory.length < 1))
|
||||||
|
) {
|
||||||
return (
|
return (
|
||||||
<ErrorCard text={"Failed to fetch active stake"} retry={fetchData} />
|
<ErrorCard text={"Failed to fetch active stake"} retry={fetchData} />
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue