Skip to content

Commit

Permalink
[fix] param 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
euije committed Mar 15, 2024
1 parent eeedc6c commit fd31e56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/school-attack/[[...groupId]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default function Page() {
};

useEffect(() => {
sendGAEvent('school_attack_visit', {
sendGAEvent('event', 'school_attack_visit', {
from: document.referrer,
});
}, []);
Expand All @@ -201,7 +201,7 @@ export default function Page() {
onClick={async () => {
await navigator.clipboard.writeText(window.location.href);
alert('링크가 복사되었습니다!');
sendGAEvent('school_attack_copy_btn');
sendGAEvent('event', 'school_attack_copy_btn');
}}
>
<Image className='mr-2' src={share_svg} alt='share' />
Expand Down

0 comments on commit fd31e56

Please sign in to comment.