diff --git a/plugins/cost-insights/src/client.ts b/plugins/cost-insights/src/client.ts index f1abee102c..0ba57f76fa 100644 --- a/plugins/cost-insights/src/client.ts +++ b/plugins/cost-insights/src/client.ts @@ -127,17 +127,12 @@ export class ExampleCostInsightsClient implements CostInsightsApi { } async getProductInsights(options: ProductInsightsOptions): Promise { - const projectProductInsights = await this.request( - options, - entityOf(options.product), - ); - const productInsights: Entity = await this.request( options, entityOf(options.product), ); - return options.project ? projectProductInsights : productInsights; + return productInsights; } async getAlerts(group: string): Promise {