Skip to content

Commit

Permalink
refactor: import path 수정 및 사용하지 않는 imports 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed Jun 23, 2024
1 parent 8837610 commit a8fb257
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/display/DropDown/NotificationDropDown.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator } from ".";

import { useNotifications } from "@/hooks/notification/useNotifications";

import { DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator } from "./DropDown";

export interface INotification {
title: string;
message: string;
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigation/NavBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/display/DropDown";
} from "@/components/display/DropDown/DropDown";
import { NotificationDropDown } from "@/components/display/DropDown/NotificationDropDown";

import { useAuth } from "@/hooks/member/useAuth";
Expand Down
2 changes: 0 additions & 2 deletions src/components/navigation/Pagination/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ export interface IPagination {
}

export const Pagination: React.FC<IPagination> = ({ totalPages }) => {
const searchParam = useSearchParams();

const { page: currentPage } = usePage();

return (
Expand Down

0 comments on commit a8fb257

Please sign in to comment.