diff --git a/src/components/members/detail/ProfileSection/index.tsx b/src/components/members/detail/ProfileSection/index.tsx
index 156da06d2..9d420b928 100644
--- a/src/components/members/detail/ProfileSection/index.tsx
+++ b/src/components/members/detail/ProfileSection/index.tsx
@@ -121,7 +121,7 @@ const ProfileSection = ({ profile, memberId }: ProfileSectionProps) => {
logClickEvent('editProfile');
}}
>
-
+
) : (
@@ -132,7 +132,7 @@ const ProfileSection = ({ profile, memberId }: ProfileSectionProps) => {
}}
>
-
+
신고
@@ -143,7 +143,7 @@ const ProfileSection = ({ profile, memberId }: ProfileSectionProps) => {
}}
>
- 차단
+ 차단
diff --git a/src/components/members/detail/SoptActivitySection/index.tsx b/src/components/members/detail/SoptActivitySection/index.tsx
index 60cb08363..4c1fab744 100644
--- a/src/components/members/detail/SoptActivitySection/index.tsx
+++ b/src/components/members/detail/SoptActivitySection/index.tsx
@@ -12,16 +12,9 @@ interface SoptActivitySectionProps {
}
export default function SoptActivitySection({ soptActivities, isMine }: SoptActivitySectionProps) {
- // 메이커스 정보가 프로필에서 먼저 오도록 정렬
- const sortedActivities = [...soptActivities].sort((a, b) => {
- const aIsMakers = a.team === '메이커스' ? 1 : 0;
- const bIsMakers = b.team === '메이커스' ? 1 : 0;
- return bIsMakers - aIsMakers;
- });
-
return (
- {sortedActivities.map(({ generation, part, projects, team }, idx) => (
+ {soptActivities.map(({ generation, part, projects, team }, idx) => (