瀏覽代碼

♻️ refactor(avatar): simplify avatar upload success handler

- 移除handleUploadSuccess函数的fileKey、fileUrl和file参数,简化函数签名
- 保持头像上传成功提示功能不变
yourname 4 月之前
父節點
當前提交
08484b2604
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/client/admin-shadcn/components/AvatarSelector.tsx

+ 1 - 1
src/client/admin-shadcn/components/AvatarSelector.tsx

@@ -101,7 +101,7 @@ const AvatarSelector: React.FC<AvatarSelectorProps> = ({
     setSelectedFile(null);
   };
 
-  const handleUploadSuccess = (fileKey: string, fileUrl: string, file: any) => {
+  const handleUploadSuccess = () => {
     toast.success('头像上传成功!请从列表中选择新上传的头像');
   };