Skip to content

Commit

Permalink
fix: result history filter
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesvedder committed Sep 5, 2024
1 parent 0b2a44e commit 65cf8a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/lib/src/models/tables/study_subject.dart
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,8 @@ class StudySubject extends SupabaseObjectFunctions<StudySubject> {
return SupabaseQuery.extractSupabaseList<StudySubject>(
await env.client
.from(tableName)
.select('*,study!study_subject_studyId_fkey(*),subject_progress(*)'),
.select('*,study!study_subject_studyId_fkey(*),subject_progress(*)')
.eq('user_id', userId),
);
}

Expand Down

0 comments on commit 65cf8a4

Please sign in to comment.