Skip to content

Commit

Permalink
don't over await
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Mar 30, 2021
1 parent fa99b94 commit 07a9ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/delegate/src/getMergedParent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export async function getMergedParent(
loader = new DataLoader(infos => getMergedParentsFromInfos(parent, context, infos));
loaders.set(parent, loader);
}
return await loader.load(info);
return loader.load(info);
}

async function getMergedParentsFromInfos(
Expand Down

0 comments on commit 07a9ffe

Please sign in to comment.