Skip to content

Commit

Permalink
fix: scroll stake address history
Browse files Browse the repository at this point in the history
  • Loading branch information
tungnguyendinh committed Jul 25, 2024
1 parent 04c40c6 commit 34f33a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const StakeHistoryTab: React.FC<{ stakeAddress?: string; isMobile?: boolean; tab
total: fetchData.total,
onChange: (page, size) => history.replace({ search: stringify({ page, size }) }, history.location.state)
}}
minHeight={152}
minHeight={fetchData.total === 0 ? 360 : 152}
/>
);
};
Expand Down

0 comments on commit 34f33a9

Please sign in to comment.