initial commit

This commit is contained in:
Sone
2026-05-19 18:46:16 +02:00
parent a92d70ca74
commit 7e67fa8ea0
33 changed files with 6316 additions and 3952 deletions
+2 -3
View File
@@ -34,8 +34,7 @@ export type UserLoginLog = {
| "ACCOUNT_LOCKED"
| "NOT_ACTIVATED"
| "NOT_ALLOWED"
| "UNKNOWN"
| null;
| "UNKNOWN";
};
const normalizeSortDir = (dir?: TableSortDirection) => {
@@ -114,7 +113,7 @@ export const usersApi = baseApi.injectEndpoints({
providesTags: (result) => [
"Users",
...(result?.items ?? []).map(
({ id }) => ({ type: "Users", id } as const)
({ id }) => ({ type: "Users", id }) as const,
),
],
}),