Skip to content

Commit

Permalink
hotfix for wrong base url being injected to the version service (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdstolworthy authored Aug 3, 2020
1 parent a05c131 commit 4e89cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/factories/service_factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const createApiV1Services = (config: Config): ServiceFactory => () => {
authService: new Apiv1AuthService(config),
engagementService: new Apiv1EngagementService(config.backendUrl),
notificationService: new FakedNotificationService(),
versionService: new Apiv1VersionService(config.baseUrl),
versionService: new Apiv1VersionService(config.backendUrl),
};
};

Expand Down

0 comments on commit 4e89cca

Please sign in to comment.