From f763be8f0fa1b7ba1a7bb5fc3059e91c36611da7 Mon Sep 17 00:00:00 2001 From: Eric Leijonmarck Date: Mon, 17 Jan 2022 10:01:01 +0100 Subject: [PATCH] small fix :pray: (#44089) --- public/app/features/serviceaccounts/state/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/serviceaccounts/state/actions.ts b/public/app/features/serviceaccounts/state/actions.ts index a38440f3562..a4dc6243aa6 100644 --- a/public/app/features/serviceaccounts/state/actions.ts +++ b/public/app/features/serviceaccounts/state/actions.ts @@ -3,7 +3,7 @@ import { getBackendSrv } from '@grafana/runtime'; import { OrgServiceAccount as OrgServiceAccount } from 'app/types'; import { serviceAccountsLoaded } from './reducers'; -const BASE_URL = `'/api/org/serviceaccounts'`; +const BASE_URL = `/api/org/serviceaccounts`; export function loadServiceAccounts(): ThunkResult { return async (dispatch) => {