From e3182cac1f2d05fedc3978e7e5f660fc1cacefaa Mon Sep 17 00:00:00 2001 From: Anand Suthar Date: Fri, 21 Jun 2024 15:09:41 +0530 Subject: [PATCH] imported notification component using relative path instead of import alias --- app/components/Headbar/index.tsx | 2 +- app/components/headbar/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/Headbar/index.tsx b/app/components/Headbar/index.tsx index 367be5cd..cc6f3d70 100644 --- a/app/components/Headbar/index.tsx +++ b/app/components/Headbar/index.tsx @@ -4,7 +4,7 @@ import { CiLogin } from "react-icons/ci"; import { GoPlus } from "react-icons/go"; import { User as UserType } from "@/types"; import { logoutAction } from "@lib/actions"; -import { Notifications } from "@components/index"; +import Notifications from "../notifications"; type HeadbarProps = { user: UserType; diff --git a/app/components/headbar/index.tsx b/app/components/headbar/index.tsx index 367be5cd..cc6f3d70 100644 --- a/app/components/headbar/index.tsx +++ b/app/components/headbar/index.tsx @@ -4,7 +4,7 @@ import { CiLogin } from "react-icons/ci"; import { GoPlus } from "react-icons/go"; import { User as UserType } from "@/types"; import { logoutAction } from "@lib/actions"; -import { Notifications } from "@components/index"; +import Notifications from "../notifications"; type HeadbarProps = { user: UserType;