Browse Source

그룹명 중복된 경우 중복알림 출력하도록 수정

pull/2/head
qkr7828(박재우) 2 years ago
parent
commit
d87e1f4289
  1. 11
      src/modules/basis/group/sagas/basisGroupSaga.ts

11
src/modules/basis/group/sagas/basisGroupSaga.ts

@ -128,8 +128,19 @@ function* createGroupSaga(
}) })
); );
} else { } else {
if (data.errorCode === 'DT002') {
yield put(
MessageActions.IS_ERROR({
errorCode: ERROR_MESSAGE.code,
errorMessage: data.errorMessage + ' (그룹명)',
isHistoryBack: false,
isRefresh: false
})
);
} else{
throw Error; throw Error;
} }
}
} catch (error) { } catch (error) {
yield put( yield put(
MessageActions.IS_ERROR({ MessageActions.IS_ERROR({

Loading…
Cancel
Save