summaryrefslogtreecommitdiff
path: root/src/components/rules/Rules.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/rules/Rules.tsx')
-rw-r--r--src/components/rules/Rules.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/rules/Rules.tsx b/src/components/rules/Rules.tsx
index c0b02ae..45c55fc 100644
--- a/src/components/rules/Rules.tsx
+++ b/src/components/rules/Rules.tsx
@@ -36,7 +36,7 @@ function Row({ index, style, data }: RowComponentProps<RulesRowProps>) {
const r = rules[index];
return (
<div style={style}>
- <Rule {...r} />
+ <Rule {...r} apiConfig={apiConfig} provider={provider} />
</div>
);
}