diff --git a/gongjakso/src/pages/ProfileApplied/AppliedTeam.jsx b/gongjakso/src/pages/ProfileApplied/AppliedTeam.jsx
index a56a5a1..7b38940 100644
--- a/gongjakso/src/pages/ProfileApplied/AppliedTeam.jsx
+++ b/gongjakso/src/pages/ProfileApplied/AppliedTeam.jsx
@@ -4,6 +4,7 @@ import TeamBox from '../TeamBox/TeamBox';
import TopButton from '../../pages/HomePage/TopButton';
import Pagination from '../../components/Pagination/Pagination';
import { getMyInfo, getMyApplied } from '../../service/profile_service';
+import { Link } from 'react-router-dom';
const TeamSupport = () => {
const [data, setProfileData] = useState();
@@ -24,7 +25,7 @@ const TeamSupport = () => {
useEffect(() => {
getMyInfo().then(response => {
- setProfileData(response?.data); // 'response'를 바로 전달
+ setProfileData(response?.data);
});
}, []);
@@ -43,15 +44,20 @@ const TeamSupport = () => {
{data?.name}님의 지원 기록
- {postContent2?.map((postContent2, index) => (
-
+ {postContent2?.map((postContent, index) => (
+
+
+
+
+
))}