From dbff46bf55ecdbfd89b760a95c662678b13a9103 Mon Sep 17 00:00:00 2001 From: Alec M Date: Thu, 9 Jan 2025 17:31:31 -0500 Subject: [PATCH] fix: Sort the order of AuthRoles per the US --- src/config/AuthRoles.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/AuthRoles.ts b/src/config/AuthRoles.ts index 14e47ece7..fad965682 100644 --- a/src/config/AuthRoles.ts +++ b/src/config/AuthRoles.ts @@ -1,14 +1,15 @@ /** * Defines a list of valid user roles that can be assigned to a user. * + * @note This list is rendered in the UI exactly as ordered here, without additional sorting. * @see {@link UserRole} */ export const Roles: UserRole[] = [ "User", "Submitter", + "Data Commons Personnel", "Federal Lead", "Admin", - "Data Commons Personnel", ]; /**