Skip to content

Commit fdc557a

Browse files
committed
fix: Breadcrumb type data to be object
1 parent ec571ff commit fdc557a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"test": "lerna run --stream --concurrency 1 --sort test",
1414
"codecov": "codecov"
1515
},
16-
"toolchain": {
16+
"volta": {
1717
"node": "10.15.3",
1818
"yarn": "1.13.0"
1919
},

packages/types/src/breadcrumb.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface Breadcrumb {
77
event_id?: string;
88
category?: string;
99
message?: string;
10-
data?: any;
10+
data?: { [key: string]: any };
1111
timestamp?: number;
1212
}
1313

0 commit comments

Comments
 (0)