Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
toSorted는 왜 build가 안 되지?
  • Loading branch information
yoopark authored and 김성욱 committed Oct 18, 2023
1 parent f299886 commit 0d2219c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/Team/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const TeamPage = () => {
<VStack align="start" spacing="3rem">
<H2BoldText>팀원</H2BoldText>
<HStack spacing="2rem">
{users.toSorted(teamUserCompareFn).map((user) => (
{users.sort(teamUserCompareFn).map((user) => (
<Link key={user.login} to={ROUTES.PROFILE_OF(user.login)}>
<VStack spacing="0.6rem">
{user.isLeader ? (
Expand Down

0 comments on commit 0d2219c

Please sign in to comment.