From ef9c93853105f0e047501d04252dbe94c811ba1e Mon Sep 17 00:00:00 2001 From: TaehunLee <85233397+Todari@users.noreply.github.com> Date: Thu, 10 Oct 2024 20:43:55 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20eventName=EC=97=90=20=EB=94=B0=EB=9D=BC?= =?UTF-8?q?=20og=ED=83=9C=EA=B7=B8=EA=B0=80=20=EB=B3=80=EA=B2=BD=EB=90=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95=20(#739)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: meta tag 수정 * feat: 행사 이름에 따라 meta tag가 변경되도록 수정 * fix: EventPageLayout이 사용되지 않는 경우, 기존 meta 태그가 보이도록 변경 * fix: unmount시 기존의 태그로 변경되도록 적용 * style: lint 적용 --- client/index.html | 7 ++----- client/src/pages/EventPage/EventPageLayout.tsx | 12 ++++++++++++ 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/client/index.html b/client/index.html index 6ca0b92c..7f96b23c 100644 --- a/client/index.html +++ b/client/index.html @@ -5,7 +5,7 @@ 행동대장 - 쉽고 빠른 모임 정산 및 송금 서비스 - + - + { kakaoShare(); }; + useEffect(() => { + console.log('mount'); + updateMetaTag('og:title', `행동대장이 "${eventSummary.eventName}"에 대한 정산을 요청했어요`); + + return () => { + console.log('unmount'); + updateMetaTag('og:title', '행동대장 - 쉽고 빠른 모임 정산 및 송금 서비스'); + }; + }, []); + return (