File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export function useInstrumentVisualization({ params }: UseInstrumentVisualizatio
101101 longRecord . push ( {
102102 Date : toBasicISOString ( date ) ,
103103 SubjectID : params . subjectId ,
104- Value : arrItem as string ,
104+ Value : arrItem ,
105105 Variable : `${ objKey } -${ arrKey } `
106106 } ) ;
107107 } ) ;
@@ -159,9 +159,6 @@ export function useInstrumentVisualization({ params }: UseInstrumentVisualizatio
159159 case 'TSV' :
160160 void download ( `${ baseFilename } .tsv` , ( ) => {
161161 const rows = makeWideRows ( ) ;
162-
163- console . log ( rows ) ;
164-
165162 const tsv = parseHelper ( rows , '\t' ) ;
166163
167164 return tsv ;
@@ -170,8 +167,6 @@ export function useInstrumentVisualization({ params }: UseInstrumentVisualizatio
170167 case 'TSV Long' :
171168 void download ( `${ baseFilename } .tsv` , ( ) => {
172169 const rows = makeLongRows ( ) ;
173- console . log ( rows ) ;
174-
175170 const tsv = parseHelper ( rows , '\t' ) ;
176171
177172 return tsv ;
You can’t perform that action at this time.
0 commit comments