Skip to content

Commit 28cb878

Browse files
committed
fix: lint
1 parent a2895eb commit 28cb878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app-config-extensions/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ function selectDefined<T>(...args: (T | null | undefined)[]): T | null {
527527
if (a !== undefined) return a;
528528
}
529529

530-
return undefined as any;
530+
return (undefined as any) as T;
531531
}
532532

533533
const validateObject: ValidationFunction<

0 commit comments

Comments
 (0)