From 3e21aa3f77c67db9d9292555adf65869514d6103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=A4=A9=E9=AA=84?= <5307576@qq.com> Date: Tue, 16 Jun 2026 16:49:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E4=BC=A0=E5=8F=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/users.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/users.ts b/src/api/users.ts index f751afe8..f95673df 100644 --- a/src/api/users.ts +++ b/src/api/users.ts @@ -560,7 +560,7 @@ export async function resetUserPassword(params: ResetUserPasswordParams): Promis export async function importUsers(params: ImportUsersParams): Promise { const formData = new FormData() - formData.append('files', params.file) + formData.append('file', params.file) const response = await fetch('/server/api/cms/users/import/', { method: 'POST',