Skip to content

Commit

Permalink
Merge pull request #43 from diggerhq/fix/onboarding-freeze
Browse files Browse the repository at this point in the history
Remove join of runs with user_profiles
  • Loading branch information
ZIJ authored Sep 11, 2024
2 parents 8c6edd7 + d2f3ad1 commit 486ac33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/user/runs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export async function getRunsByProjectId(projectId: string) {
const supabase = createSupabaseUserServerComponentClient();
const { data, error } = await supabase
.from('digger_runs')
.select(`*, user_profiles (full_name)`)
.select(`*`)
.eq('project_id', projectId)
.order('created_at', { ascending: false });

Expand Down

0 comments on commit 486ac33

Please sign in to comment.