diff --git a/stores/profile.js b/stores/profile.js index e9ac524..a0c239f 100644 --- a/stores/profile.js +++ b/stores/profile.js @@ -113,7 +113,7 @@ export const useProfileStore = defineStore('profile', () => { } async function fetchTenants () { - tenants.value = (await supabase.from("tenants").select()).data + tenants.value = (await supabase.from("tenants").select().order("id",{ascending: true})).data } const getOwnProfile = computed(() => {