We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8994a commit ca41408Copy full SHA for ca41408
src/domains/mypage/components/pages/my-active/MyLike.tsx
@@ -20,13 +20,13 @@ function MyLike() {
20
credentials: 'include',
21
});
22
const json = await res.json();
23
- setMyLike(json.data.items);
+ // setMyLike(json.data.items);
24
};
25
26
useEffect(() => {
27
fetchLike();
28
}, []);
29
30
- return <PostCard posts={myLike} isLoading={isLoading} />;
+ // return <PostCard posts={myLike} isLoading={isLoading} />;
31
}
32
export default MyLike;
0 commit comments