Skip to content

Commit

Permalink
Merge pull request #378 from TogetherCrew/fix-platform-agnostic
Browse files Browse the repository at this point in the history
debug: working on the getMembersInteractionsNetworkGraph
  • Loading branch information
Behzad-rabiei authored Aug 11, 2024
2 parents 71565e7 + 8f22a8a commit 5f64e76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/memberActivity.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -957,9 +957,9 @@ async function getMembersInteractionsNetworkGraph(
const r = _fields[_fieldLookup['r']];
const b = _fields[_fieldLookup['b']];

const aUserId = a?.properties?.userId as string;
const aUserId = a?.properties?.id as string;
const rWeeklyInteraction = r?.properties?.weight as number;
const bUserId = b?.properties?.userId as string;
const bUserId = b?.properties?.id as string;

usersInNetworkGraph.push(aUserId);
usersInNetworkGraph.push(bUserId);
Expand Down

0 comments on commit 5f64e76

Please sign in to comment.