let request = fetch(`${apiUrl}/admin${path}`, fetchOptions)
    .then(async (r) => {
      if (r.ok) return r.text();
      if (r.status === 401) {
        authLogout();