fix: Instagram 핸들 클릭 시 항상 인스타그램 프로필로 이동
profileLink (병원 홈페이지 도메인) 이 우선되어 핸들 클릭 시 인스타그램이 아닌 홈페이지로 이동하던 버그 수정. 5개 병원 (banobagi/grand/wonjin/ts/irum) 모두 영향. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>main
parent
41577391d5
commit
99d72f81d6
|
|
@ -40,7 +40,7 @@ function AccountCard({ account, index }: { key?: string | number; account: Insta
|
|||
<h3 className="font-bold text-lg text-[#0A1128] mb-1">
|
||||
{account.handle ? (
|
||||
<a
|
||||
href={account.profileLink || `https://instagram.com/${account.handle.replace(/^@/, '')}`}
|
||||
href={`https://instagram.com/${account.handle.replace(/^@/, '')}`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-[#6C5CE7] inline-flex items-center gap-1"
|
||||
|
|
|
|||
Loading…
Reference in New Issue