Skip to content

Commit e8e0bce

Browse files
authored
fix(classifications): Make label optional (#1842)
I believe this was the originally intended payload.
1 parent bdad845 commit e8e0bce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/util/object.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type OtherExperimentLogFields = {
2121
error: unknown;
2222
tags: string[];
2323
scores: Record<string, number | null>;
24-
classifications?: Record<string, { id: string; label: string }[]>;
24+
classifications?: Record<string, { id: string; label?: string }[]>;
2525
metadata: Record<string, unknown>;
2626
metrics: Record<string, unknown>;
2727
datasetRecordId: string;

0 commit comments

Comments
 (0)