summaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-06-17 19:18:25 -0700
committerLogan Hunt <loganhunt@simponic.xyz>2022-06-17 19:18:25 -0700
commit99a0252063b8eb6b380617b186f89beb56f922f0 (patch)
tree49113ab5591864158fd1be4992231604a501149a /src/routes
parent91c2b0b4b9fe7b19fc0aec7c071c04bb39fc096e (diff)
downloadmistymountainstherapy-99a0252063b8eb6b380617b186f89beb56f922f0.tar.gz
mistymountainstherapy-99a0252063b8eb6b380617b186f89beb56f922f0.zip
Sort by id
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/team/index.svelte2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/team/index.svelte b/src/routes/team/index.svelte
index 52c97ee..489ae04 100644
--- a/src/routes/team/index.svelte
+++ b/src/routes/team/index.svelte
@@ -5,7 +5,7 @@
import { supabase } from '$lib/supabase';
const getPeople = async () => {
- const { data, error } = await supabase.from('people').select();
+ const { data, error } = await supabase.from('people').select().order('id');
if (!error) {
return data;
}