Skip to content

Commit

Permalink
最近解除した実績の順序を正しく
Browse files Browse the repository at this point in the history
  • Loading branch information
nasubi-dev committed Oct 3, 2024
1 parent 354ceac commit bd04d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ranking/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function Page(): ReactElement {
最近の実績解除
</Text>
<Box mt="1rem" />
{unlockedAchievements.map((u) => {
{unlockedAchievements.reverse().map((u) => {
const unlockedMember = members.find(
(m) => m.email === u.memberEmail,
);
Expand Down

0 comments on commit bd04d66

Please sign in to comment.