Skip to content

Commit daa025f

Browse files
committed
UsersFilter.tsx
1 parent 67c4e96 commit daa025f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

site/src/pages/UsersPage/UsersFilter.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export const useStatusFilterMenu = ({
2424
}: Pick<UseFilterMenuOptions<StatusOption>, "value" | "onChange">) => {
2525
const statusOptions: StatusOption[] = [
2626
{ value: "active", label: "Active", color: "success" },
27-
{ value: "suspended", label: "Suspended", color: "secondary" },
27+
{ value: "dormant", label: "Dormant", color: "secondary" },
28+
{ value: "suspended", label: "Suspended", color: "warning" },
2829
]
2930
return useFilterMenu({
3031
onChange,

0 commit comments

Comments
 (0)