File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
- import { createSlice , current } from '@reduxjs/toolkit' ;
1
+ import { createSlice } from '@reduxjs/toolkit' ;
2
2
import { InitialState } from '../FrontendTypes' ;
3
3
import _ from 'lodash' ;
4
4
@@ -14,8 +14,6 @@ const initialState: InitialState = {
14
14
} ;
15
15
16
16
const findName = ( index : number , obj ) => {
17
- console . log ( 'findName index: ' , index ) ;
18
- console . log ( 'findName obj: ' , current ( obj ) ) ;
19
17
// eslint-disable-next-line eqeqeq
20
18
if ( obj && obj . index == index ) {
21
19
return obj . name ;
@@ -465,7 +463,6 @@ export const mainSlice = createSlice({
465
463
} ,
466
464
467
465
startReconnect : ( state ) => {
468
- console . log ( 'STATE: ' , current ( state ) ) ;
469
466
state . connectRequested = true ;
470
467
state . port = initialState . port ;
471
468
} ,
You can’t perform that action at this time.
0 commit comments