Skip to content

Commit

Permalink
fix: 뉴스레터 보관함 > 아티클 보관함 변경 (#ATR-537)
Browse files Browse the repository at this point in the history
  • Loading branch information
LC-02s committed Jul 11, 2024
1 parent 6fc00b4 commit df22bba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/service/src/app/(service)/(static)/inbox/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function InboxLayout({ children }: PropsWithChildren) {

return (
<>
<Header title="뉴스레터 보관함" mobileFixed={isArticleView} />
<Header title="아티클 보관함" mobileFixed={isArticleView} />
<WithAuth>
<UserInboxLayout pageType="default" isArticleView={isArticleView}>
{children}
Expand Down
2 changes: 1 addition & 1 deletion apps/service/src/app/(service)/(static)/inbox/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Metadata } from 'next'

export const metadata: Metadata = {
title: '뉴스레터 보관함',
title: '아티클 보관함',
}

export default function InboxPage() {
Expand Down
2 changes: 1 addition & 1 deletion apps/service/src/widgets/menu/constant/sideMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const SIDE_MENU: Readonly<SideMenu[]> = Object.freeze([
needLogin: false,
},
{
name: '뉴스레터 보관함',
name: '아티클 보관함',
shortName: '보관함',
href: '/inbox',
segment: 'inbox',
Expand Down

0 comments on commit df22bba

Please sign in to comment.