Skip to content

Commit

Permalink
[Feat] QFEED-118 팔로우 버튼 비로그인 상태 처리 (#69)
Browse files Browse the repository at this point in the history
* feat: qfeed-118 마이페이지 기능 구현

* feat: qfeed-118 프로필 페이지 기능구현

* feat: qfeed-118 프로필 편집 페이지 기능 구현

* feat: qfeed-118 질문페이지 답변 데이터 form-data 형식으로 변경

* feat: qfeed-118 form-data 헤더 변경

* feat: qfeed-118 useGroup import 수정

* feat: qfeed-118 마이페이지 userId 가져오기 추가

* feat: qfeed-118 로그인된 userId 적용

* feat: qfeed-118 팔로우 버튼 비로그인시 로그인 화면으로 이동

* fix: qfeed-118 qspace 주석제거
  • Loading branch information
Sunami97 authored Dec 9, 2024
1 parent 21dafc5 commit 3847a82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/MyPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
ButtonGroup,
Container,
Content,
// QSpaceList,
QSpaceList,
QuestionList,
Tab,
TabContainer,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Profile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const ProfilePage = () => {
</FollowInfo>
<ButtonGroup>
<Button
onClick={!isSelfProfile ? handleFollowClick : undefined} //
onClick={!isSelfProfile ? handleFollowClick : () => navigate('/login')} //
backgroundColor={theme.colors.primary}
textColor={theme.colors.white}
>
Expand Down

0 comments on commit 3847a82

Please sign in to comment.