Skip to content

Commit

Permalink
프로덕션 배포
Browse files Browse the repository at this point in the history
  • Loading branch information
100Gyeon authored Oct 3, 2023
1 parent 1ef6a76 commit a5c38b1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/page/meetingDetail/Feed/FeedItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ import { useMutationUpdateLike } from '@api/post/hooks';
import { useRouter } from 'next/router';
import { ampli } from '@/ampli';
import { useQueryGetMeeting } from '@api/meeting/hooks';
import Link from 'next/link';
import { playgroundURL } from '@constants/url';
import { playgroundLink } from '@sopt-makers/playground-common';
import { useDisplay } from '@hooks/useDisplay';

Expand Down Expand Up @@ -77,7 +75,7 @@ const FeedItem = (post: FeedItemProps) => {
onClick={e => {
e.preventDefault();
ampli.clickFeedProfile({ crew_status: meeting?.approved });
router.push(`${playgroundURL}${playgroundLink.memberDetail(user.orgId)}`);
window.location.href = `${playgroundLink.memberDetail(user.orgId)}`;
}}
>
<SProfileImageWrapper>
Expand Down

0 comments on commit a5c38b1

Please sign in to comment.