Skip to content

Commit 2dc192c

Browse files
authoredJan 23, 2025··
Merge pull request #1039 from Agbeleshe/testnet
Updated the file app/admin/quests/page.tsx to display the most recent quests first
2 parents 711a07f + 080f6ee commit 2dc192c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎app/admin/quests/page.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default function Page() {
4040
try {
4141
setLoading(true);
4242
const res = await AdminService.getQuests();
43-
setQuests(res);
43+
setQuests(res.reverse());
4444
setLoading(false);
4545
} catch (error) {
4646
showNotification("Error while fetching quests", "error");

0 commit comments

Comments
 (0)
Please sign in to comment.