Skip to content

Commit

Permalink
fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariacarmina committed Jun 21, 2024
1 parent 6cad483 commit 9013e9f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/services/Provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ export class Provider {
const endpoint: ServiceEndpoint = {
serviceName: i,
method: endpoints.serviceEndpoints[i][0],
urlPath: providerEndpoint.replace(/\/+$/, '') + '/' + endpoints.serviceEndpoints[i][1].replace(/^\/+/, '')
urlPath:

Check failure on line 64 in src/services/Provider.ts

View workflow job for this annotation

GitHub Actions / lint

Delete `·`
providerEndpoint.replace(/\/+$/, '') +
'/' +
endpoints.serviceEndpoints[i][1].replace(/^\/+/, '')
}
serviceEndpoints.push(endpoint)
}
Expand Down

0 comments on commit 9013e9f

Please sign in to comment.