Skip to content

Commit b0ccec7

Browse files
authored
Merge pull request #158 from Jeju-Month/main
main 머지
2 parents bbfa98b + fafa084 commit b0ccec7

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

src/pages/MyPage/components/aside/Aside.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { useSelector } from 'react-redux';
1010
import { useQuery } from '@tanstack/react-query';
1111

1212
import { useState } from 'react';
13-
import UserFollow from '../userfollower/userFollow';
1413
import { getUserApi } from '@/apis/userApi';
14+
import UserFollow from '../userfollower/UserFollow';
1515

1616
const Aside = () => {
1717
const { userId, userFullName } = useSelector(state => state.user);

src/pages/MyPage/components/main/comment/CommentSection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
22
import Comment from './Comment';
33
import { useSelector } from 'react-redux';
44
import { deleteCommentApi } from '@/apis/commentApi';
5-
import MyPageHeader from '../common/myPageHeader';
65
import NoContent from '../common/NoContent';
76
import { getUserApi } from '@/apis/userApi';
7+
import MyPageHeader from '../common/MyPageHeader';
88

99
const CommentSection = () => {
1010
const { userId } = useSelector(state => state.user);

src/pages/MyPage/components/main/liked/LikedSection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { getAllUserLikedArticlesApi } from '@/apis/supabaseApi';
22
import LikedPost from './LikedPost';
33
import { useSelector } from 'react-redux';
4-
import MyPageHeader from '../common/myPageHeader';
4+
import MyPageHeader from '../common/MyPageHeader';
55
import NoContent from '../common/NoContent';
66
import { deleteUserLikedArticleApi } from '@/apis/supabaseApi';
77
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';

src/pages/MyPage/components/main/post/PostsSection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
33
import Post from './Post';
44
import { useSelector } from 'react-redux';
5-
import MyPageHeader from '../common/myPageHeader';
5+
import MyPageHeader from '../common/MyPageHeader';
66
import NoContent from '../common/NoContent';
77
import { deletePostApi, getUserPost } from '@/apis/postApi';
88

src/pages/MyPage/components/main/schedule/ScheduleSection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect } from 'react';
22
import { useState } from 'react';
33
import { useSelector } from 'react-redux';
44
import { deleteTripApi, getAllTripsApi } from '@/apis/supabaseApi';
5-
import MyPageHeader from '../common/myPageHeader';
5+
import MyPageHeader from '../common/MyPageHeader';
66
import NoContent from '../common/NoContent';
77
import Schedule from './Schedule';
88

src/pages/MyPage/components/main/scrap/ScrapSection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect, useState } from 'react';
22
import { deleteUserLikedPlaceApi, getAllUserLikedPlacesApi } from '@/apis/supabaseApi';
33
import ScrapPlaceCard from './ScrapPlaceCard';
44
import { useSelector } from 'react-redux';
5-
import MyPageHeader from '../common/myPageHeader';
5+
import MyPageHeader from '../common/MyPageHeader';
66
import NoContent from '../common/NoContent';
77
import Container from './Container';
88

src/pages/MyPage/components/userfollower/followerTab/FollowerItem.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ FollowerItem.propTypes = {
3737
image: PropTypes.string,
3838
fullName: PropTypes.string.isRequired,
3939
_id: PropTypes.string.isRequired,
40-
followerForFollower: PropTypes.bool.isRequired,
40+
followerForFollower: PropTypes.bool,
4141
}),
4242

4343
followHandler: PropTypes.func,

src/pages/SearchPage/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ const SearchPage = () => {
312312
<main className="mt-22 ">
313313
<div className="min-h-658">
314314
{isLoading ? (
315+
// <SkeletonLayout layout={layout} itemList={itemListLength} />
315316
<SkeletonLayout layout={layout} itemList={itemListLength} />
316317
) : (
317318
<div className={layout === 'medium-layout' ? 'flex flex-wrap' : ''}>

src/redux/slices/wishlist.slice.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
getAllUserLikedPlacesApi,
44
postUserLikedPlaceApi,
55
deleteUserLikedPlaceApi
6-
} from '../../apis/supabaseApi';
6+
} from '@/apis/supabaseApi';
77

88
const initialState = {
99
likedPlaces: [],

0 commit comments

Comments
 (0)