Skip to content

Commit 4417680

Browse files
author
Corey Robertson
committed
Fix double basepath append
1 parent 2090aa8 commit 4417680

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

x-pack/plugins/canvas/public/services/workpad.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const workpadServiceFactory: CanvasServiceFactory<WorkpadService> = (
6060
startPlugins
6161
): WorkpadService => {
6262
const getApiPath = function () {
63-
return coreStart.http.basePath.prepend(`${API_ROUTE_WORKPAD}`);
63+
return `${API_ROUTE_WORKPAD}`;
6464
};
6565
return {
6666
get: async (id: string) => {

0 commit comments

Comments
 (0)