fix: type error in AdminPage handleSaveUser payload, install deps

This commit is contained in:
Stephen Wheet
2026-03-28 19:41:06 +00:00
parent 9f8d3f8d99
commit 77f2c616de
3 changed files with 7 additions and 7 deletions

View File

@@ -247,7 +247,7 @@ export default function AdminPage(): React.ReactElement {
const handleSaveUser = async () => {
try {
const payload = {
const payload: { username?: string; email?: string; role: string; password?: string } = {
username: editForm.username.trim() || undefined,
email: editForm.email.trim() || undefined,
role: editForm.role,