-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(community): Fix logic issue #7151
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
Thank you! |
WHERE ${collectionId ? "collection_id = $2 AND " : ""}${ | ||
this.idColumnName | ||
} = ANY($1::uuid[]) | ||
WHERE ${collectionId ? "collection_id = $2 AND " : ""}${this.idColumnName |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you run yarn format
? Seems like it's blocking CI
I don't have permission to merge to your branch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry about that! I ran it on the wrong branch before 🙈
The ?? operator is the nullish coalescing operator, which only checks for null or undefined. However, the expression before it
getEnvironmentVariable("LANGCHAIN_VERBOSE") === "true"
is a boolean expression and will never be null or undefined.@PetersClemens
Fixes # (issue)