Skip to content

Commit

Permalink
refactor: remove default undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
danstarns committed Nov 8, 2021
1 parent 162b7a5 commit 26b09b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/graphql/src/translate/translate-create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ function translateCreate({ context, node }: { context: Context; node: Node }): [
};

let replacedProjectionParams: Record<string, unknown> = {};
let projectionStr: string | undefined = undefined;
let authCalls: string | undefined = undefined;
let projectionStr: string | undefined;
let authCalls: string | undefined;

if (nodeProjection) {
let projAuth = "";
Expand Down

0 comments on commit 26b09b5

Please sign in to comment.