Skip to content

Commit

Permalink
removed ununsed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
asimregmi committed Nov 28, 2023
1 parent b079f6c commit 47faa16
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions client/src/redux/sagas/onboarding.sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export async function fetchOnboardingAdminList(
showIncompleteOnly
) {
const params = { offset, limit, showIncompleteOnly };
console.log('in sagas 1', showIncompleteOnly);
if (q) {
params.q = q;
}
Expand All @@ -32,7 +31,6 @@ export function* getOnboardingAdminList(action) {
query,
showIncompleteOnly
);
console.log('in sagas 2', showIncompleteOnly);
yield put({
type: 'FETCH_ONBOARDING_ADMIN_LIST_SUCCESS',
payload: {
Expand Down

0 comments on commit 47faa16

Please sign in to comment.