Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions src/app/member/profile/_constants/menuList.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ import { type MenuListItem } from "../types";
// TODO: 노션, 인스타 링크 전달받으면 수정
export const MENU_LIST: readonly MenuListItem[] = [
{ type: "link", id: "notice", label: "공지사항", link: "/" },
{ type: "link", id: "customer_service", label: "고객센터", link: "/" },
{ type: "link", id: "guide", label: "잇다 이용가이드", link: "/" },
{
type: "link",
id: "customer_service",
label: "고객센터",
link: "https://www.instagram.com/eatda.site",
},
{
type: "link",
id: "guide",
label: "잇다 이용가이드",
link: "https://ultra-wallet-037.notion.site/243b6292d53980ccb1c9fc2ffafabff7",
},
{ type: "action", id: "logout", label: "로그아웃" },
] as const;
6 changes: 5 additions & 1 deletion src/components/ui/BottomSheet/BottomSheetRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ export type BottomSheetRootProps = {
} & DialogProps;

export function BottomSheetRoot({ children, ...props }: BottomSheetRootProps) {
return <Drawer.Root {...props}>{children}</Drawer.Root>;
return (
<Drawer.Root {...props} repositionInputs={false}>
{children}
</Drawer.Root>
);
}

BottomSheetRoot.displayName = "BottomSheet.Root";