Skip to content

Commit

Permalink
Fix: #274 팀 생성 및 팀원 초대 MSW 처리 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Seok93 committed Nov 28, 2024
1 parent 94e5833 commit 4029c54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mocks/services/teamServiceHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const teamServiceHandler = [
teamId: newTeamId,
userId: coworker.userId,
roleId: role.roleId,
isPendingApproval: false,
isPendingApproval: true,
});
}
TEAM_USER_DUMMY.push(...validTeamUsers);
Expand All @@ -99,7 +99,7 @@ const teamServiceHandler = [
teamId: newTeamId,
userId,
roleId: creatorRole.roleId,
isPendingApproval: true,
isPendingApproval: false,
});

return new HttpResponse(null, {
Expand Down Expand Up @@ -319,7 +319,7 @@ const teamServiceHandler = [
teamId: Number(teamId),
userId: Number(userId),
roleId: role.roleId,
isPendingApproval: true,
isPendingApproval: false,
};

TEAM_USER_DUMMY.push(newUser);
Expand Down

0 comments on commit 4029c54

Please sign in to comment.