Fix actions not being constructible

This commit is contained in:
thepaperpilot 2023-05-01 08:20:30 -05:00
parent 5dabc5826c
commit 186fb4468b

View file

@ -244,8 +244,9 @@ export function createAction<T extends ActionOptions>(
decorator.postConstruct?.(action);
}
const decoratedProps = decorators.reduce((current, next) =>
Object.assign(current, next.getGatheredProps?.(action))
const decoratedProps = decorators.reduce(
(current, next) => Object.assign(current, next.getGatheredProps?.(action)),
{}
);
action[GatherProps] = function (this: GenericAction) {
const {