Skip to content

Commit 0922a2e

Browse files
committed
Fix: proxy url 배포 url로 수정
1 parent dd5584d commit 0922a2e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

pages/link/index.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,15 @@ const LinkPage = ({
104104
{!isMobile && <AddFolderButton setFolderList={setFolderList} />}
105105
</div>
106106
<div className="flex justify-between items-center my-[24px]">
107-
<h1 className="text-2xl ">{folderName as string}</h1>
108107
{folder && (
109-
<FolderActionsMenu
110-
setFolderList={setFolderList}
111-
folderId={folder}
112-
linkCount={totalCount as number}
113-
/>
108+
<>
109+
<h1 className="text-2xl ">{folderName as string}</h1>
110+
<FolderActionsMenu
111+
setFolderList={setFolderList}
112+
folderId={folder}
113+
linkCount={totalCount as number}
114+
/>
115+
</>
114116
)}
115117
</div>
116118
{isLoading ? (

0 commit comments

Comments
 (0)