diff --git a/src/main.ts b/src/main.ts index efa4e7fc..e16e69c9 100644 --- a/src/main.ts +++ b/src/main.ts @@ -132,7 +132,9 @@ async function loadPluginModules() { } async function loadCurrentUser() { - const response = await axiosInstance.get(`/custom-api/v1alpha1/users/me`); + const response = await axiosInstance.get( + `/apis/api.halo.run/v1alpha1/users/-` + ); app.provide("currentUser", response.data); }