Skip to content

Commit 00f2c6a

Browse files
authored
Merge pull request #50 from oslabs-beta/ctstamper/Remove-Logs
removed console logs
2 parents fb4626b + dbc559f commit 00f2c6a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/app/slices/mainSlice.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createSlice, current } from '@reduxjs/toolkit';
1+
import { createSlice } from '@reduxjs/toolkit';
22
import { InitialState } from '../FrontendTypes';
33
import _ from 'lodash';
44

@@ -14,8 +14,6 @@ const initialState: InitialState = {
1414
};
1515

1616
const findName = (index: number, obj) => {
17-
console.log('findName index: ', index);
18-
console.log('findName obj: ', current(obj));
1917
// eslint-disable-next-line eqeqeq
2018
if (obj && obj.index == index) {
2119
return obj.name;
@@ -465,7 +463,6 @@ export const mainSlice = createSlice({
465463
},
466464

467465
startReconnect: (state) => {
468-
console.log('STATE: ', current(state));
469466
state.connectRequested = true;
470467
state.port = initialState.port;
471468
},

0 commit comments

Comments
 (0)