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 15, 2025
1 parent fb3f8e0 commit 9dcd658
Showing 1 changed file with 1 addition and 2 deletions.
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 9dcd658

Please sign in to comment.