yeet name_first and name_last from users table

This commit is contained in:
Matthew Penner 2021-07-28 21:31:00 -06:00
parent f1be653486
commit bf9dfa87da
20 changed files with 144 additions and 82 deletions

View file

@ -4,8 +4,6 @@ import { User, rawDataToUser } from '@/api/admin/users/getUsers';
export interface Values {
username: string;
email: string;
firstName: string;
lastName: string;
password: string;
adminRoleId: number | null;
}