Skip to content

Commit 0e6ff75

Browse files
committed
debugging
1 parent 712b72a commit 0e6ff75

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

app/components/AnalyzeComponent.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}>;

app/components/CleanComponent/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}>;

app/reducers/pyodideReducer.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { createReducer } from '@reduxjs/toolkit';
22
import { PyodideActions, ExperimentActions } from '../actions';
33

44
export 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

3029
const initialState = {
31-
mainChannel: null,
3230
epochsInfo: [],
3331
channelInfo: [],
3432
psdPlot: null,

0 commit comments

Comments
 (0)