We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dc7552 commit 883f178Copy full SHA for 883f178
1 file changed
apps/web/src/hooks/useInstrumentVisualization.ts
@@ -100,6 +100,8 @@ export function useInstrumentVisualization({ params }: UseInstrumentVisualizatio
100
return csv;
101
});
102
break;
103
+ case 'CSV Long':
104
+ break;
105
case 'JSON': {
106
exportRecords.map((item) => {
107
item.subjectID = params.subjectId;
@@ -123,6 +125,8 @@ export function useInstrumentVisualization({ params }: UseInstrumentVisualizatio
123
125
return tsv;
124
126
127
128
+ case 'TSV Long':
129
130
}
131
};
132
0 commit comments