Skip to content

Commit 743cbfa

Browse files
chore: ts fixes
1 parent ec52ee5 commit 743cbfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/accuracy/sdk/parameterScorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const ParameterScorers = {
4141
const hasNonEmptyAdditions = additions.some((diff) => {
4242
const diffPaths = pathComponentsToFullPaths(diff.path);
4343
const considerablePathHasAdditions = diffPaths.some((diffPath) => paths.includes(diffPath));
44-
const valueAtPath = diff.value;
44+
const valueAtPath = diff.value as unknown;
4545
return (
4646
considerablePathHasAdditions &&
4747
!(

0 commit comments

Comments
 (0)