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 fe48fba commit ac45231Copy full SHA for ac45231
packages/rules-engine/src/processors/rulesEffectsProcessor/rulesEffectsProcessor.ts
@@ -123,7 +123,7 @@ export function getRulesEffectsProcessor(
123
const outputValue = convertNormalizedValueToOutputValue(normalizedValue, element.valueType);
124
125
return {
126
- type: effectActions.ASSIGN_VALUE as any,
+ type: effectActions.ASSIGN_VALUE,
127
id: element.id,
128
value: outputValue,
129
targetDataType,
@@ -164,7 +164,7 @@ export function getRulesEffectsProcessor(
164
const outputEffects = createEffectsForConfiguredDataTypes(
165
effect,
166
() => ({
167
- type: effectActions.HIDE_FIELD as any,
+ type: effectActions.HIDE_FIELD,
168
content: effect.content,
169
}),
170
);
0 commit comments