Skip to content

Commit e64bd4e

Browse files
committed
fix parameter name
1 parent edd7374 commit e64bd4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/stores/contacts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const useContactsStore = defineStore('contacts-store', () => {
7878
const { error } = await $supabase
7979
// @ts-expect-error: Issue with nuxt/supabase
8080
.schema('private')
81-
.rpc('refine_persons', { user_id: $user.value?.id });
81+
.rpc('refine_persons', { userid: $user.value?.id });
8282
if (error) throw error;
8383
}
8484

0 commit comments

Comments
 (0)