Skip to content

Commit

Permalink
hotfix: ensure same order
Browse files Browse the repository at this point in the history
  • Loading branch information
luistorres committed May 21, 2024
1 parent 0130db0 commit 346b496
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web-app/app/_server/idos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ export const getAllowedProjectApplicants = async (projectAddress: string) => {
const { error, data } = await supabase
.from('applications')
.select('address')
.eq('project', projectAddress);
.eq('project', projectAddress)
.order('address', { ascending: true });

if (error) {
return {
Expand Down

0 comments on commit 346b496

Please sign in to comment.