From e43924da36dd9c13f62bdcd2b761d483d22d532b Mon Sep 17 00:00:00 2001 From: Ricardo Espinoza Date: Mon, 26 Jun 2023 22:08:17 -0400 Subject: [PATCH] refactor(editor): Update endpoint to retrieve limits (no-changelog) (#6539) update endpoint to retrieve limits --- packages/editor-ui/src/api/cloudPlans.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/api/cloudPlans.ts b/packages/editor-ui/src/api/cloudPlans.ts index eb39bd42d..27dc6cc7e 100644 --- a/packages/editor-ui/src/api/cloudPlans.ts +++ b/packages/editor-ui/src/api/cloudPlans.ts @@ -9,5 +9,5 @@ export async function getCurrentPlan( } export async function getCurrentUsage(context: IRestApiContext): Promise { - return get(context.baseUrl, '/limits'); + return get(context.baseUrl, '/cloud/limits'); }