Skip to content

Commit

Permalink
feat(insight): rename arg
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanlb committed Oct 11, 2023
1 parent f6447e3 commit cb61f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/InsightPanelInterfaces/InsightPanelInterface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ export default class InsightPanelInterface extends Resource {
);
}

restoreVersion(insightPanelInterfaceId: string, versionNumber: number, params: RestoreInterfaceVersionParams) {
restoreVersion(insightPanelInterfaceId: string, versionNumber: number, body: RestoreInterfaceVersionParams) {
return this.api.post<InsightPanelInterfaceConfiguration>(
`${InsightPanelInterface.baseUrl}/${insightPanelInterfaceId}/versions/${versionNumber}/restore`,
params,
body,
);
}

Expand Down

0 comments on commit cb61f4f

Please sign in to comment.