-
Notifications
You must be signed in to change notification settings - Fork 0
마이페이지 1:1 문의 카카오 채널 연결 #697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -103,10 +103,9 @@ const NAV_ITEMS: { | |||||
| prefixMatch: true, | ||||||
| }, | ||||||
| { | ||||||
| href: '/my-inquiry', | ||||||
| href: 'http://pf.kakao.com/_VmCYn', | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 데스크톱 사이드바 링크도 HTTPS로 맞춰 주세요. 모바일과 동일하게 여기서도 수정 제안- href: 'http://pf.kakao.com/_VmCYn',
+ href: 'https://pf.kakao.com/_VmCYn',📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 카카오톡 링크는 http://pf.kakao.com/_VmCYn가 맞습니다 |
||||||
| label: '1:1 문의', | ||||||
| icon: EditNoteIcon, | ||||||
| prefixMatch: true, | ||||||
| }, | ||||||
| { | ||||||
| href: '/builder-ticket', | ||||||
|
|
@@ -138,6 +137,10 @@ export default function Sidebar() { | |||||
| showToast('준비중인 기능입니다.', 'info'); | ||||||
| return; | ||||||
| } | ||||||
| if (item.href.startsWith('http')) { | ||||||
| window.open(item.href, '_blank', 'noopener,noreferrer'); | ||||||
| return; | ||||||
| } | ||||||
| router.push(item.href); | ||||||
| }} | ||||||
| isActive={ | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
외부 링크는 HTTPS로 고정해 주세요.
현재
1:1 문의링크가http://라서 불필요한 보안 리스크가 생깁니다.https://로 변경하는 게 안전합니다.수정 제안
📝 Committable suggestion
🤖 Prompt for AI Agents