Skip to content

Commit

Permalink
fix last wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly-akamai committed Feb 27, 2024
1 parent f0dc38a commit ac168c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api-v4/src/placement-groups/placement-groups.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import type {
CreatePlacementGroupPayload,
PlacementGroup,
UnassignLinodesFromPlacementGroupPayload,
RenamePlacementGroupPayload,
UpdatePlacementGroupPayload,
} from './types';

/**
Expand Down Expand Up @@ -72,7 +72,7 @@ export const createPlacementGroup = (data: CreatePlacementGroupPayload) =>
*/
export const renamePlacementGroup = (
placementGroupId: number,
data: RenamePlacementGroupPayload
data: UpdatePlacementGroupPayload
) =>
Request<PlacementGroup>(
setURL(
Expand Down

0 comments on commit ac168c0

Please sign in to comment.