diff --git a/src/pages/DragonPage/DragonsSyrup.tsx b/src/pages/DragonPage/DragonsSyrup.tsx
index d378855cc..2b7f838a5 100644
--- a/src/pages/DragonPage/DragonsSyrup.tsx
+++ b/src/pages/DragonPage/DragonsSyrup.tsx
@@ -411,10 +411,16 @@ const DragonsSyrup: React.FC = () => {
>
)}
- {syrupInfos ? (
+ {syrupInfos && !pageLoading ? (
syrupInfos.map((syrup, ind) => )
) : (
-
+ <>
+
+
+
+
+
+ >
)}
>
diff --git a/src/pages/FarmPage/FarmPage.tsx b/src/pages/FarmPage/FarmPage.tsx
index 6a4c6f2e5..e461eec67 100755
--- a/src/pages/FarmPage/FarmPage.tsx
+++ b/src/pages/FarmPage/FarmPage.tsx
@@ -737,7 +737,9 @@ const FarmPage: React.FC = () => {
)}
- {farmIndex === GlobalConst.farmIndex.LPFARM_INDEX && stakingInfos ? (
+ {farmIndex === GlobalConst.farmIndex.LPFARM_INDEX &&
+ stakingInfos &&
+ !pageloading ? (
stakingInfos.map((info: StakingInfo, index) => (
{
/>
))
) : farmIndex === GlobalConst.farmIndex.DUALFARM_INDEX &&
- stakingDualInfos ? (
+ stakingDualInfos &&
+ !pageloading ? (
stakingDualInfos.map((info: DualStakingInfo, index) => (
{
/>
))
) : (
-
+ <>
+
+
+
+
+
+ >
)}