fix: typecheck errors voor Vercel build

This commit is contained in:
Janpeter Visser 2026-04-24 13:44:33 +02:00
parent 08de004ae7
commit 62da039684
2 changed files with 1 additions and 2 deletions

View file

@ -180,7 +180,7 @@ export async function getStoryLogsAction(storyId: string) {
return {
success: true,
logs: logs.map(l => ({
logs: logs.map((l: (typeof logs)[number]) => ({
id: l.id,
type: l.type,
content: l.content,

View file

@ -13,6 +13,5 @@ export default defineConfig({
},
datasource: {
url: process.env.DATABASE_URL!,
directUrl: process.env.DIRECT_URL,
},
})