Skip to content

Commit 2693c1b

Browse files
committed
fix: lint
1 parent 74f89e7 commit 2693c1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/App/UserProfile/sagas.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ function* fetchUserProfile(action: PayloadAction<string>) {
5858
api.participants.read,
5959
)) as MakeResponse<FetchParticipantsResponse>;
6060

61-
if (assignableParticipantsResponse.status == 200) {
61+
if (assignableParticipantsResponse.status === 200) {
6262
// throw new Error(JSON.stringify(assignableParticipantsResponse));
6363
userProfile.assignableParticipants = assignableParticipantsResponse.data.participants;
64-
64+
6565
const assignedParticipantsResponse = (yield call(api.userParticipants.read, {
6666
id: action.payload,
6767
})) as MakeResponse<FetchParticipantsResponse>;
68-
68+
6969
if (assignedParticipantsResponse.status !== 200) {
7070
throw new Error(JSON.stringify(assignedParticipantsResponse));
7171
}

0 commit comments

Comments
 (0)