diff --git a/src/utils/lazyReact.tsx b/src/utils/lazyReact.tsx index b75bbb6bb..8f2715745 100644 --- a/src/utils/lazyReact.tsx +++ b/src/utils/lazyReact.tsx @@ -8,7 +8,7 @@ import { makeLazy } from "./lazy"; export const SYM_LAZY_COMPONENT_INNER = Symbol.for("vencord.lazyComponent.inner"); -export type LazyComponentType

= React.FunctionComponent

& AnyRecord & { +export type LazyComponentType

= React.FunctionComponent

& AnyRecord & { [SYM_LAZY_COMPONENT_INNER]: () => AnyComponentType

| null; };