Skip to content

Commit 12ae11e

Browse files
committed
chore: remove console logs
1 parent 57b70a9 commit 12ae11e

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

apps/web/src/hooks/useInstrumentVisualization.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)