Skip to content

Commit

Permalink
Order registrations page
Browse files Browse the repository at this point in the history
  • Loading branch information
kearfy committed May 16, 2024
1 parent 56578d8 commit a9dda7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/[locale]/(console)/account/registrations/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ function useData({
[RichAttends[], { count: number }[], (User | Team)[]]
>(
/* surql */ `
SELECT * FROM $auth->attends
SELECT * FROM $auth->attends
ORDER BY out.start
START $start
LIMIT $limit
FETCH in, out, players.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ function useData({
LET $team = type::thing('team', $slug);
SELECT * FROM $team->attends
ORDER BY out.start
START $start
LIMIT $limit
FETCH in, out, players.*;
Expand Down

0 comments on commit a9dda7c

Please sign in to comment.