From 0a122eb1a4edf40fea7f81352bf088ad1b2cf73a Mon Sep 17 00:00:00 2001 From: Anand Suthar Date: Wed, 3 Jul 2024 18:01:28 +0530 Subject: [PATCH] fix : import alias error @types --- app/lib/emails/templates.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/emails/templates.tsx b/app/lib/emails/templates.tsx index a5c0c819..58e035ed 100644 --- a/app/lib/emails/templates.tsx +++ b/app/lib/emails/templates.tsx @@ -1,4 +1,4 @@ -import { UserLog, bookingAppointment } from "@/types"; +import { UserLog, bookingAppointment } from "@types"; import { Html } from "@react-email/html"; import { getCurrentDateFormatted } from "@utils/getDate"; import React from "react";