From 0e6ff75d7af048aecf908c95c1b9333035539c67 Mon Sep 17 00:00:00 2001 From: Teon L Brooks Date: Sat, 3 Jul 2021 18:44:30 -0400 Subject: [PATCH] debugging --- app/components/AnalyzeComponent.tsx | 1 - app/components/CleanComponent/index.tsx | 1 - app/reducers/pyodideReducer.ts | 2 -- 3 files changed, 4 deletions(-) diff --git a/app/components/AnalyzeComponent.tsx b/app/components/AnalyzeComponent.tsx index 5ee0cb8e..911f856f 100644 --- a/app/components/AnalyzeComponent.tsx +++ b/app/components/AnalyzeComponent.tsx @@ -52,7 +52,6 @@ interface Props { type: EXPERIMENTS; deviceType: DEVICES; isEEGEnabled: boolean; - mainChannel: any; epochsInfo: Array<{ [key: string]: number | string; }>; diff --git a/app/components/CleanComponent/index.tsx b/app/components/CleanComponent/index.tsx index 1ade4b09..773e4609 100644 --- a/app/components/CleanComponent/index.tsx +++ b/app/components/CleanComponent/index.tsx @@ -27,7 +27,6 @@ export interface Props { type?: EXPERIMENTS; title: string; deviceType: DEVICES; - mainChannel?: any; epochsInfo: Array<{ [key: string]: number | string; }>; diff --git a/app/reducers/pyodideReducer.ts b/app/reducers/pyodideReducer.ts index af19a9b8..a3dffc4d 100644 --- a/app/reducers/pyodideReducer.ts +++ b/app/reducers/pyodideReducer.ts @@ -2,7 +2,6 @@ import { createReducer } from '@reduxjs/toolkit'; import { PyodideActions, ExperimentActions } from '../actions'; export interface PyodideStateType { - readonly mainChannel: any | null | undefined; readonly epochsInfo: Array<{ [key: string]: number | string; }>; @@ -28,7 +27,6 @@ export interface PyodideStateType { } const initialState = { - mainChannel: null, epochsInfo: [], channelInfo: [], psdPlot: null,