fix type.

This commit is contained in:
Brian Cao 2023-08-26 16:35:43 -07:00
parent fcd7fac2ce
commit f2f5517051

View File

@ -13,7 +13,7 @@ export interface UsersRequestBody {
username: string;
password: string;
id: string;
role?: Role;
role: Role;
}
import * as yup from 'yup';