Fix
All checks were successful
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2025-12-01 23:43:28 +01:00
parent cef44cab0a
commit ccc2ff1b57

View File

@@ -20,7 +20,7 @@ export namespace Async {
} }
const SuspenseProto = Object.freeze({ const AsyncProto = Object.freeze({
[TypeId]: TypeId, [TypeId]: TypeId,
makeFunctionComponent<P extends {}, A extends React.ReactNode, E, R>( makeFunctionComponent<P extends {}, A extends React.ReactNode, E, R>(
@@ -63,7 +63,7 @@ export const async = <T extends Component.Component<any, any, any, any>>(
) => Object.setPrototypeOf( ) => Object.setPrototypeOf(
Object.assign(function() {}, self), Object.assign(function() {}, self),
Object.freeze(Object.setPrototypeOf( Object.freeze(Object.setPrototypeOf(
Object.assign({}, SuspenseProto), Object.assign({}, AsyncProto),
Object.getPrototypeOf(self), Object.getPrototypeOf(self),
)), )),
) )