Skip to content

Commit

Permalink
Update accumulatePoint in account detail
Browse files Browse the repository at this point in the history
  • Loading branch information
anhnhu committed Jul 12, 2024
1 parent 07542aa commit e7279f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Component: React.FC<Props> = (props: Props) => {
});

const currentRank = account?.attributes.rank || 'iron';
const currentPoint = account?.attributes.point || 0;
const currentPoint = account?.attributes.accumulatePoint || 0;

const pointPercent = useMemo(() => {
const currentRankInfo = rankInfoMap?.[currentRank];
Expand Down

0 comments on commit e7279f1

Please sign in to comment.