Skip to content

Commit

Permalink
Merge pull request #99 from Onion-City/dev
Browse files Browse the repository at this point in the history
Feat: 일정 검색 & 게시글, 댓글 & 출석
  • Loading branch information
hhbb0081 authored Jun 30, 2024
2 parents ef3e508 + 71ef6bc commit 0598288
Show file tree
Hide file tree
Showing 116 changed files with 1,692 additions and 673 deletions.
128 changes: 110 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
"react-datepicker": "^6.9.0",
"react-dom": "^18",
"react-hook-form": "^7.51.2",
"react-query": "^3.39.3",
"react-toastify": "^10.0.5",
"rsuite": "^5.58.1",
"styled-components": "^6.1.8"
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/http.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ axiosInstance.interceptors.response.use(
console.log(err);
// access token 만료 시
if (response?.status && response?.status === 403) {
window.location.href = "/login";
window.location.href = "/user/login";
localStorage.clear();
return config;
}
Expand Down
11 changes: 11 additions & 0 deletions src/app/info/board/like/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { InfoBoardLike } from "@/features/info/board/like/InfoBoardLike";

const InfoBoardLikePage = () => {
return (
<>
<InfoBoardLike/>
</>
);
};

export default InfoBoardLikePage;
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import SetupUserClub from "@/features/user/club/SetupUserClub";

const UserClub = () => {
const UserClubCreate = () => {
// 모임 등록 페이지
return <SetupUserClub />;
}

export default UserClub;
export default UserClubCreate;
7 changes: 7 additions & 0 deletions src/app/user/club/join/[clubId]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import InvitationCode from "@/features/user/joinClub/InvitationCode";

const JoinClubInfo = () => {
return <InvitationCode />;
};

export default JoinClubInfo;
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/login/page.tsx → src/app/user/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Login from "@/features/Login/Login";
import Login from "@/features/user/Login/Login";

const UserLogin = () => {
return <Login />;
Expand Down
Binary file added src/assets/images/ic_header_menuToggle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions src/components/atoms/comment/Comment.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
.comment__box {
display: flex;
align-items: center;
width:fit-content;
width: 100%;
}
.comment__box__wrapper {
margin-top: 0.94rem;
width: 100%;
}
.comment__box__is__reply img {
width: 0.875rem;
Expand All @@ -15,6 +16,7 @@
.comment__box__profile {
display: flex;
align-items: center;
width: 100%;
}
.comment__box__profile img {
width: 1.8125rem;
Expand All @@ -27,10 +29,9 @@
margin-bottom: 0.31rem;
display: flex;
flex-direction: column;
margin-right: auto;
}
.comment__box__edit {
margin-left: auto;
}

.comment__box__margin__left {
margin-left: 2.4125rem;
}
Expand Down
Loading

0 comments on commit 0598288

Please sign in to comment.