Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmochu committed Mar 28, 2019
1 parent fd4946b commit 56ac887
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/Dashboard/components/DashboardContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class DashboardContainer extends Component {

render() {
const {
error, loading, pointsEarned, activitiesLogged, userActivities, society, successMessage, showToastMessage, dlevel,,
error, loading, pointsEarned, activitiesLogged, userActivities, society, successMessage, showToastMessage, dlevel,
} = this.props;
const {
user, logPoints,
Expand Down
3 changes: 2 additions & 1 deletion src/app/Dashboard/operations/tests/reducer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ describe('handles case LOG_ACTIVITY_TOAST_OPEN', () => {
error: null,
society: '',
loading: false,
dlevel: '',
pointsEarned: 0,
activitiesLogged: 0,
activity: {},
Expand All @@ -219,6 +220,7 @@ describe('handles case LOG_ACTIVITY_TOAST_CLOSE', () => {
error: null,
society: '',
loading: false,
dlevel: '',
pointsEarned: 0,
activitiesLogged: 0,
activity,
Expand All @@ -228,4 +230,3 @@ describe('handles case LOG_ACTIVITY_TOAST_CLOSE', () => {
});
});
});

3 changes: 1 addition & 2 deletions src/sagas/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { all, fork } from 'redux-saga/effects';
import { watchFetchSocietyInfoReq } from '../app/Societies/operations';
import { watchFetchUserRoleRequest } from '../app/Sidebar/operations';
import watchFetchUserActivitiesRequest, { watchLogActivitySuccess } from '../app/Dashboard/operations/dashboard.data';

import { watchCategoriesLoad, watchLogActivityPoints } from '../app/Dashboard/operations/logPoints.data';
import { watchFetchSocietyInfoReq, watchFetchSocietyRedemptionsReq } from '../app/Societies/operations';

Expand Down

0 comments on commit 56ac887

Please sign in to comment.