Skip to content

Commit

Permalink
chore(span): remove redundant condition
Browse files Browse the repository at this point in the history
  • Loading branch information
harelmo-lumigo committed Dec 28, 2023
1 parent 77ea833 commit 01d1877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spans/prismaSpan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const createPrismaSpan = (
started: requestMetadata.started,
model: prismaFields.model,
operation: prismaFields.operation,
queryArgs: prismaFields.queryArgs ? payloadStringify(prismaFields.queryArgs) : '',
queryArgs: payloadStringify(prismaFields.queryArgs)
};
};

Expand Down

0 comments on commit 01d1877

Please sign in to comment.