Skip to content

Commit

Permalink
chore: use any here
Browse files Browse the repository at this point in the history
  • Loading branch information
rengert committed Dec 8, 2023
1 parent bc3063d commit 082aa5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ export class DialogLayoutComponent<T> extends DialogComponent<T> implements OnIn
}

function isFormDialogComponent(component: unknown): component is FormDialogComponent<unknown> {
return (component as FormDialogComponent<unknown>).form !== undefined;
return (component as any).form !== undefined;
}

0 comments on commit 082aa5b

Please sign in to comment.