We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 316b685 commit 425b7bfCopy full SHA for 425b7bf
1 file changed
packages/web/src/features/mcp/askCodebase.ts
@@ -103,7 +103,10 @@ export const askCodebase = (params: AskCodebaseParams): Promise<AskCodebaseResul
103
104
const selectedRepos = (await Promise.all(repos.map(async (repo) => {
105
const repoDB = await prisma.repo.findFirst({
106
- where: { name: repo },
+ where: {
107
+ name: repo,
108
+ orgId: org.id,
109
+ },
110
});
111
if (!repoDB) {
112
throw new ServiceErrorException({
0 commit comments