From 4c1f00f47993f22eb4c5495c41093d1356e06e26 Mon Sep 17 00:00:00 2001 From: Anand Suthar Date: Fri, 21 Jun 2024 15:19:49 +0530 Subject: [PATCH] fixed : Notification component name conflicts --- app/components/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/index.tsx b/app/components/index.tsx index 8f50e2da..2314f60d 100644 --- a/app/components/index.tsx +++ b/app/components/index.tsx @@ -2,7 +2,7 @@ import BrandLogo from "./brandlogo"; import Carousel from "./carousel"; import ErrorBoundary from "./error-boundary"; import Headbar from "./headbar"; -import Notifications from "./Notifications"; +// import Notifications from "./Notifications"; import OtpSection from "./otp"; import SpinnerLoader from "./SpinnerLoader"; @@ -11,7 +11,7 @@ export { Carousel, ErrorBoundary, Headbar, - Notifications, + // Notifications, OtpSection, SpinnerLoader, };