Skip to content

Commit

Permalink
Merge pull request #2750 from build-5/bugfix/sdk
Browse files Browse the repository at this point in the history
Fix sdk
  • Loading branch information
adamunchained authored Jan 12, 2024
2 parents 1b44fd9 + d948833 commit fa4cb62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/https/datasets/award/AwardDataset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class AwardDataset<D extends Dataset> extends DatasetClass<D, Award> {

getTopByMemberLive = (member: string, completed: boolean, startAfter?: string) => {
const members = (
this.subset(Subset.MEMBERS) as SubsetType<Dataset.AWARD, Subset.PARTICIPANTS>
this.subset(Subset.PARTICIPANTS) as SubsetType<Dataset.AWARD, Subset.PARTICIPANTS>
).getTopByMemberLive(member, completed, startAfter);
return members.pipe(
switchMap(async (members) => {
Expand Down

0 comments on commit fa4cb62

Please sign in to comment.