Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
guskovaue committed Oct 27, 2023
1 parent bc18d27 commit 865b46e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const transformOperations = ({
return {
id: action.id,
params: action.params,
...(action.uuid && { frequency: action.uuid }),
...(action.uuid && { uuid: action.uuid }),
type: RuleActionTypes.SYSTEM,
};
}
Expand All @@ -41,7 +41,7 @@ export const transformOperations = ({
params: action.params,
uuid: action.uuid,
...(action.frequency && { frequency: action.frequency }),
...(action.uuid && { frequency: action.uuid }),
...(action.uuid && { uuid: action.uuid }),
frequency: action.frequency,
type: RuleActionTypes.DEFAULT,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from '../../../lib';
import { BASE_ALERTING_API_PATH } from '../../../../types';
import { RouteOptions } from '../../..';
import {
import type {
CreateRuleRequestBodyV1,
CreateRuleRequestParamsV1,
CreateRuleResponseV1,
Expand Down

0 comments on commit 865b46e

Please sign in to comment.