Skip to content

Commit

Permalink
Restore RulePage to create rule form
Browse files Browse the repository at this point in the history
  • Loading branch information
Zacqary committed Jan 10, 2025
1 parent 71afcbc commit 2191969
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/response-ops/rule_form/src/create_rule_form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import {
parseRuleCircuitBreakerErrorMessage,
} from './utils';
import { RULE_CREATE_SUCCESS_TEXT, RULE_CREATE_ERROR_TEXT } from './translations';
import { RuleFlyout } from './rule_flyout';

export interface CreateRuleFormProps {
ruleTypeId: string;
Expand Down Expand Up @@ -199,7 +198,7 @@ export const CreateRuleForm = (props: CreateRuleFormProps) => {
}),
}}
>
<RuleFlyout isEdit={false} isSaving={isSaving} onCancel={onCancel} onSave={onSave} />
<RulePage isEdit={false} isSaving={isSaving} onCancel={onCancel} onSave={onSave} />
</RuleFormStateProvider>
</div>
);
Expand Down

0 comments on commit 2191969

Please sign in to comment.