Skip to content

Conversation

@yceffort-naver
Copy link
Contributor

Summary

  • editUrl에서 @naverpay/ 프리픽스를 제거하여 올바른 GitHub 경로로 연결

변경 내용

// AS-IS
editUrl: (params) => `https://github.com/NaverPayDev/pie/tree/main/packages/${params.docPath}`

// TO-BE
editUrl: (params) => {
    const docPath = params.docPath.startsWith('@naverpay/')
        ? params.docPath.replace('@naverpay/', '')
        : params.docPath
    return `https://github.com/NaverPayDev/pie/blob/main/packages/${docPath}`
}

Closes #118

editUrl에서 @naverpay/ 프리픽스를 제거하여 올바른 GitHub 경로로 연결

Closes #118
@yceffort-naver yceffort-naver requested a review from a team as a code owner December 30, 2025 02:42
@yceffort-naver yceffort-naver self-assigned this Dec 30, 2025
@npayfebot
Copy link
Collaborator

🔍 No files have been changed

Latest commit: c5b125c

Please check your commit.

If packages_dir is not specified or only markdown files are in the changes, detection may fail.

powered by: naverpay changeset detect-add actions

@npayfebot
Copy link
Collaborator

🔍 No files have been changed

Latest commit: c5b125c

Please check your commit.

powered by: naverpay size-action

Copy link
Contributor

@Ohjaeyeop Ohjaeyeop left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인했습니다

@yceffort-naver yceffort-naver merged commit efedc1c into main Dec 30, 2025
7 checks passed
@yceffort-naver yceffort-naver deleted the feature/118 branch December 30, 2025 07:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[docs] 페이지 편집 클릭 이동시 404 문제

4 participants