Skip to content

Commit 3ea2628

Browse files
committed
fix(deploy): add missing workflow table import in deploy route
Pre-existing type error — workflow table was used but not imported.
1 parent 71e604e commit 3ea2628

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/api/workflows/[id]/deploy

1 file changed

+1
-1
lines changed

apps/sim/app/api/workflows/[id]/deploy/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { db, workflowDeploymentVersion } from '@sim/db'
1+
import { db, workflow, workflowDeploymentVersion } from '@sim/db'
22
import { createLogger } from '@sim/logger'
33
import { and, eq } from 'drizzle-orm'
44
import type { NextRequest } from 'next/server'

0 commit comments

Comments
 (0)