From 0953ba89ed0cfa9fc6eadbb96fc34d490870f412 Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:01:05 -0300 Subject: [PATCH] that's wrong actually --- src/utils/lazyReact.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; };