We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a1f3f7 commit d615fb3Copy full SHA for d615fb3
packages/solid/src/errorboundary.ts
@@ -4,7 +4,8 @@ import { mergeProps, splitProps } from 'solid-js';
4
import { createComponent } from 'solid-js/web';
5
6
type ErrorBoundaryProps = {
7
- fallback: JSX.Element | ((err: unknown, reset: () => void) => JSX.Element);
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
8
+ fallback: JSX.Element | ((err: any, reset: () => void) => JSX.Element);
9
children: JSX.Element;
10
};
11
0 commit comments