We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e32bb7 commit 64b08b9Copy full SHA for 64b08b9
apps/webapp/app/v3/services/computeTemplateCreation.server.ts
@@ -23,6 +23,10 @@ export class ComputeTemplateCreationService {
23
projectId: string,
24
prisma: PrismaClientOrTransaction
25
): Promise<TemplateCreationMode> {
26
+ if (!this.client) {
27
+ return "skip";
28
+ }
29
+
30
const project = await prisma.project.findFirst({
31
where: { id: projectId },
32
select: {
0 commit comments