Skip to content

Commit 861d4c2

Browse files
committed
fix test failure caused by change by omitting __id__ from export
1 parent 6843f36 commit 861d4c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/hooks/useInstrumentVisualization.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function useInstrumentVisualization({ params }: UseInstrumentVisualizatio
7777
instrument.internal.edition
7878
}_${new Date().toISOString()}`;
7979

80-
const exportRecords = records.map((record) => omit(record, ['__time__']));
80+
const exportRecords = records.map((record) => omit(record, ['__time__', '__id__']));
8181

8282
const makeWideRows = () => {
8383
const columnNames = Object.keys(exportRecords[0]!);

0 commit comments

Comments
 (0)