Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dgieselaar committed Nov 19, 2020
1 parent 9ffc208 commit df606c5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ import { ServiceOverviewTable } from '../service_overview_table';

type ServiceTransactionGroupItem = ValuesType<
APIReturnType<
'/api/apm/services/{serviceName}/overview_transaction_groups',
'GET'
'GET /api/apm/services/{serviceName}/overview_transaction_groups'
>['transaction_groups']
>;

Expand Down Expand Up @@ -102,7 +101,8 @@ export function ServiceOverviewTransactionsTable(props: Props) {
}

return callApmApi({
pathname: '/api/apm/services/{serviceName}/overview_transaction_groups',
endpoint:
'GET /api/apm/services/{serviceName}/overview_transaction_groups',
params: {
path: { serviceName },
query: {
Expand Down

0 comments on commit df606c5

Please sign in to comment.