don't limit roles in create user dialog

This commit is contained in:
Josh Hawkins 2025-09-11 07:54:05 -05:00
parent f520d4b8dd
commit f50c4f712c

View File

@ -36,7 +36,7 @@ import { useTranslation } from "react-i18next";
type CreateUserOverlayProps = {
show: boolean;
onCreate: (user: string, password: string, role: "admin" | "viewer") => void;
onCreate: (user: string, password: string, role: string) => void;
onCancel: () => void;
};