Skip to content

Commit

Permalink
fix: Remove console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
travisstebbins committed Feb 12, 2025
1 parent 645709b commit 77be33a
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,6 @@ export const buildRelationProjection = (
tdsState: QueryBuilderTDSState,
options?: LambdaFunctionBuilderOption,
): SimpleFunctionExpression => {
console.log(
'buildRelationProjection:',
'precedingExpression:',
precedingExpression,
'tdsState:',
tdsState,
'options:',
options,
);
const projectFunction = new SimpleFunctionExpression(
extractElementNameFromPath(
QUERY_BUILDER_SUPPORTED_FUNCTIONS.RELATION_PROJECT,
Expand Down Expand Up @@ -138,6 +129,5 @@ export const buildRelationProjection = (
];
projectFunction.genericType =
GenericTypeExplicitReference.create(relationGenericType);
console.log('built projectFunction:', projectFunction);
return projectFunction;
};

0 comments on commit 77be33a

Please sign in to comment.