feat: local profile name autofill #1191

This commit is contained in:
dongchengjie
2024-06-13 16:29:25 +08:00
parent a20d4959bf
commit e2d8369daf
2 changed files with 11 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import { useTranslation } from "react-i18next";
import { Box, Button, Typography } from "@mui/material";
interface Props {
onChange: (value: string) => void;
onChange: (file: File, value: string) => void;
}
export const FileInput = (props: Props) => {
@@ -28,7 +28,7 @@ export const FileInput = (props: Props) => {
const reader = new FileReader();
reader.onload = (event) => {
resolve(null);
onChange(event.target?.result as string);
onChange(file, event.target?.result as string);
};
reader.onerror = reject;
reader.readAsText(file);