Skip to content

Commit

Permalink
Fix small typo (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariano-aguero authored Feb 26, 2021
1 parent 6f561c0 commit b78cf3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/AdditionalServicesApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export interface AdditionalServicesEndpoint {
url_production: string
url_develop?: string
}
function getAdditionalServiceUrl(baseUlr: string): string {
return `${baseUlr}${baseUlr.endsWith('/') ? '' : '/'}api/v1/`
function getAdditionalServiceUrl(baseUrl: string): string {
return `${baseUrl}${baseUrl.endsWith('/') ? '' : '/'}api/v1/`
}

export type AdditionalServicesApiParams = AdditionalServicesEndpoint[]
Expand Down

0 comments on commit b78cf3a

Please sign in to comment.