Skip to content

Commit

Permalink
imported notification component using relative path instead of import…
Browse files Browse the repository at this point in the history
… alias
  • Loading branch information
ad956 committed Jun 21, 2024
1 parent 11e1f8d commit e3182ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/Headbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion app/components/headbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e3182ca

Please sign in to comment.