Skip to content

Commit c26cda4

Browse files
authored
chore: build fix
1 parent 6e2b2dd commit c26cda4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/wrapper.ios.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function dataSerialize(data?: any, wrapPrimitives?: boolean) {
5454
.map(([key, value]) => [key, dataSerialize(value, wrapPrimitives)])
5555
.filter(([, value]) => value !== null)
5656
);
57-
return NSDictionary.dictionaryWithDictionary(node);
57+
return NSDictionary.dictionaryWithDictionary(node) as any;
5858
}
5959

6060
default:

0 commit comments

Comments
 (0)