From fe48b5acfc5508006c0e21634833f7ea9dfd3dac Mon Sep 17 00:00:00 2001 From: sijinhui Date: Mon, 29 Apr 2024 18:35:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/app/(admin)/components/users-table.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/app/(admin)/components/users-table.tsx b/app/app/(admin)/components/users-table.tsx index 51a8bfc77..adbed2185 100644 --- a/app/app/(admin)/components/users-table.tsx +++ b/app/app/(admin)/components/users-table.tsx @@ -97,6 +97,11 @@ function UsersTable({ users, setUsers, loading }: UserInterface) { setNewPassword(e.target.value.trim()); }; + const handleUserEdit = ( + method: "POST" | "PUT", + record: User | undefined, + ) => {}; + const confirmPassword = async (id: string) => { console.log("-----", newPassword, id); try {