Skip to content

Commit

Permalink
fix: fix pool bookmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-TaiTruong committed May 4, 2024
1 parent 0ca2f09 commit 3dddeb3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ const DelegationDetailInfo: React.FC<IDelegationDetailInfo> = ({ data, loading,
<Box display="flex" alignItems="center" justifyContent={justifyStyle} flex="1">
<Box display="flex" alignItems="center" width={"100%"}>
<Box marginLeft={isPoolName ? 0 : 3}>
<BookmarkButton keyword={poolId} type="POOL" />
<BookmarkButton keyword={data?.poolView || poolId} type="POOL" />
</Box>
<Box marginLeft={width < 400 ? 0 : 1}>
<HeaderStatus status={data?.poolStatus}>{data?.poolStatus}</HeaderStatus>
</Box>
<Box marginLeft={"auto"}>
<ToStakeLifCycleButton address={poolId} from={"poolDetail"} />
<ToStakeLifCycleButton address={data?.poolView || poolId} from={"poolDetail"} />
</Box>
</Box>
</Box>
Expand Down

0 comments on commit 3dddeb3

Please sign in to comment.