diff options
| author | Logan Hunt <loganhunt@simponic.xyz> | 2022-06-17 19:18:25 -0700 |
|---|---|---|
| committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-06-17 19:18:25 -0700 |
| commit | 99a0252063b8eb6b380617b186f89beb56f922f0 (patch) | |
| tree | 49113ab5591864158fd1be4992231604a501149a /src/routes/team/index.svelte | |
| parent | 91c2b0b4b9fe7b19fc0aec7c071c04bb39fc096e (diff) | |
| download | mistymountainstherapy-99a0252063b8eb6b380617b186f89beb56f922f0.tar.gz mistymountainstherapy-99a0252063b8eb6b380617b186f89beb56f922f0.zip | |
Sort by id
Diffstat (limited to 'src/routes/team/index.svelte')
| -rw-r--r-- | src/routes/team/index.svelte | 2 |
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; } |
