chore: clean up lint/type issues and tighten comment media URL validation

This commit is contained in:
Yusuf İpek
2026-02-23 16:06:43 +03:00
parent 609b33bbcb
commit d15e5192ac
19 changed files with 61 additions and 86 deletions
+3 -3
View File
@@ -121,7 +121,7 @@ async function main() {
},
});
const clientProject = await prisma.project.create({
await prisma.project.create({
data: {
name: 'Client: XYZ Corp Promo',
description: 'Promotional video for XYZ Corporation product launch.',
@@ -173,7 +173,7 @@ async function main() {
},
});
const aiToolsVideo = await prisma.video.create({
await prisma.video.create({
data: {
title: 'Best AI Tools for Developers 2025',
description: 'A curated list of AI tools that actually boost productivity.',
@@ -198,7 +198,7 @@ async function main() {
});
// Tutorial video
const reactVideo = await prisma.video.create({
await prisma.video.create({
data: {
title: 'React Server Components Deep Dive',
description: 'Understanding RSC from first principles.',