We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640b059 commit 892854fCopy full SHA for 892854f
webserver/src/pages/account.astro
@@ -32,6 +32,7 @@ const [googleUsers, recipeCount, otherUsernames, drafts] = await Promise.all([
32
prisma.draftRecipe.findMany({
33
where: { User: { id: user.id } },
34
select: { id: true, data: true },
35
+ orderBy: { createdAt: 'desc'},
36
}),
37
]);
38
0 commit comments