From 73d6ce4f7686f567fcadf419dc33f286ea01587b Mon Sep 17 00:00:00 2001 From: Hristiyan Dodov Date: Mon, 23 Mar 2026 18:56:41 +0200 Subject: [PATCH] Removed obsolete `slugify` function from `seed.ts` script --- scripts/seed.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/scripts/seed.ts b/scripts/seed.ts index 1e24183d..8f73fcd6 100644 --- a/scripts/seed.ts +++ b/scripts/seed.ts @@ -31,13 +31,6 @@ function daysAgo(n: number): string { return d.toISOString(); } -function slugify(title: string): string { - return title - .toLowerCase() - .replace(/[^a-z0-9]+/g, "-") - .replace(/(^-|-$)/g, ""); -} - // ─── Seed Data ─── async function seed() {