Skip to content

Commit ab0480e

Browse files
Remove consoles
1 parent 539e15e commit ab0480e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/frontend/src/state/AppReducer.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ export const appStateReducer = (state: AppState, action: Action): AppState => {
122122

123123
case 'UPDATE_IS_LOADED_SECTIONS' :
124124
let tempLoadedSection:any = [];
125-
console.log("action.payload", action.payload);
126125

127126
switch(action.payload.act){
128127
case 'removeAll':
@@ -133,7 +132,6 @@ export const appStateReducer = (state: AppState, action: Action): AppState => {
133132
break;
134133
default :
135134
const exists = state.isLoadedSections.some((item) => item.title === action.payload.section?.title);
136-
console.log("exists", exists);
137135
tempLoadedSection = [...state.isLoadedSections];
138136
if(!exists){
139137
tempLoadedSection.push(action.payload.section);

0 commit comments

Comments
 (0)