File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed
Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ interface Props {
5252 type : EXPERIMENTS ;
5353 deviceType : DEVICES ;
5454 isEEGEnabled : boolean ;
55- mainChannel : any ;
5655 epochsInfo : Array < {
5756 [ key : string ] : number | string ;
5857 } > ;
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ export interface Props {
2727 type ?: EXPERIMENTS ;
2828 title : string ;
2929 deviceType : DEVICES ;
30- mainChannel ?: any ;
3130 epochsInfo : Array < {
3231 [ key : string ] : number | string ;
3332 } > ;
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import { createReducer } from '@reduxjs/toolkit';
22import { PyodideActions , ExperimentActions } from '../actions' ;
33
44export interface PyodideStateType {
5- readonly mainChannel : any | null | undefined ;
65 readonly epochsInfo : Array < {
76 [ key : string ] : number | string ;
87 } > ;
@@ -28,7 +27,6 @@ export interface PyodideStateType {
2827}
2928
3029const initialState = {
31- mainChannel : null ,
3230 epochsInfo : [ ] ,
3331 channelInfo : [ ] ,
3432 psdPlot : null ,
You can’t perform that action at this time.
0 commit comments