Skip to content

Commit d113433

Browse files
committed
Fix mistake in RecursivePartial type
1 parent a0fa83b commit d113433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BaseControllerV2.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type RecursivePartial<T> = {
2727
? RecursivePartial<U>[]
2828
: T[P] extends Primitive
2929
? T[P]
30-
: RecursivePartial<T>;
30+
: RecursivePartial<T[P]>;
3131
};
3232

3333
/**

0 commit comments

Comments
 (0)