From add1b5837f8def83d4ee2cf77d82dda916b8fee1 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 21:32:00 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/lib/email-templates/registry.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/lib/email-templates/registry.ts b/src/lib/email-templates/registry.ts index 715dbed..75f7c19 100644 --- a/src/lib/email-templates/registry.ts +++ b/src/lib/email-templates/registry.ts @@ -9,15 +9,11 @@ export interface TemplateEntry { to?: string } +import { template as taskReminder } from './task-reminder' + /** * Template registry — maps template names to their React Email components. - * Import and register new templates here after creating them in this directory. - * - * Example: - * import { template as welcomeTemplate } from './welcome' - * // then add to TEMPLATES: 'welcome': welcomeTemplate */ export const TEMPLATES: Record = { - // Add templates here as they are created, e.g.: - // 'welcome': welcomeTemplate, + 'task-reminder': taskReminder, }