fix: Instagram 핸들 클릭 시 항상 인스타그램 프로필로 이동

profileLink (병원 홈페이지 도메인) 이 우선되어 핸들 클릭 시
인스타그램이 아닌 홈페이지로 이동하던 버그 수정.
5개 병원 (banobagi/grand/wonjin/ts/irum) 모두 영향.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
main
Haewon Kam 2026-04-15 08:59:49 +09:00
parent 41577391d5
commit 99d72f81d6
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ function AccountCard({ account, index }: { key?: string | number; account: Insta
<h3 className="font-bold text-lg text-[#0A1128] mb-1"> <h3 className="font-bold text-lg text-[#0A1128] mb-1">
{account.handle ? ( {account.handle ? (
<a <a
href={account.profileLink || `https://instagram.com/${account.handle.replace(/^@/, '')}`} href={`https://instagram.com/${account.handle.replace(/^@/, '')}`}
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
className="hover:text-[#6C5CE7] inline-flex items-center gap-1" className="hover:text-[#6C5CE7] inline-flex items-center gap-1"