(UI) Fixes for managing Internal Users (#8786)

* allow bulk adding internal users

* allow sorting users by created at

* cleanup

* clean up user table

* show total num users

* show per user error when bulk adding users

* fix - don't allow creating duplicate internal users in DB

* ui flow fix for bulk adding users

* allow adding user in multiple teams with models

* correctly extract info

* working invitation link

* fix fill in table after bulk add

* fix the results from creating new users in bulkd

* bulk invite users

* fix view user flow

* fix ui type errors

* fix type errors

* fix type errors
This commit is contained in:
Ishaan Jaff 2025-02-24 23:40:13 -08:00 committed by GitHub
parent 3a13d5419a
commit f8e43296fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 1134 additions and 215 deletions

View file

@ -542,7 +542,7 @@ export const userCreateCall = async (
const errorData = await response.text();
handleError(errorData);
console.error("Error response from the server:", errorData);
throw new Error("Network response was not ok");
throw new Error(errorData);
}
const data = await response.json();