Skip to content

Commit

Permalink
Fix type check
Browse files Browse the repository at this point in the history
  • Loading branch information
kpatticha committed Apr 21, 2023
1 parent 6084cfd commit a41a8f3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export const CreatingInApmServiceOverview: Story<Args> = ({

CreatingInApmServiceOverview.args = {
ruleParams: {
aggregationType: AggregationType.Avg,
environment: 'testEnvironment',
serviceName: 'testServiceName',
threshold: 1500,
Expand Down Expand Up @@ -98,7 +97,6 @@ export const CreatingInStackManagement: Story<Args> = ({

CreatingInStackManagement.args = {
ruleParams: {
aggregationType: AggregationType.Avg,
environment: 'testEnvironment',
threshold: 1500,
windowSize: 5,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
import { AlertMetadata, getIntervalAndTimeRange } from '../../utils/helper';
import { ApmRuleParamsContainer } from '../../ui_components/apm_rule_params_container';

interface RuleParams {
export interface RuleParams {
windowSize?: number;
windowUnit?: string;
threshold?: number;
Expand Down

0 comments on commit a41a8f3

Please sign in to comment.