refactor: remove twitch animation on upload photo

This commit is contained in:
Vladislav Syrochkin 2025-04-23 12:44:48 +05:00
parent 732dd701af
commit d6911626a7

View File

@ -1,6 +1,4 @@
import { PlusOutlined } from '@ant-design/icons';
import { import {
Avatar,
Button, Button,
Form, Form,
Input, Input,
@ -71,7 +69,7 @@ export default function UserCreate() {
); );
const photoToUpload = ( const photoToUpload = (
<> <div style={{ height: '102px' }}>
<Upload <Upload
listType="picture-circle" listType="picture-circle"
fileList={fileList} fileList={fileList}
@ -92,7 +90,7 @@ export default function UserCreate() {
src={previewImage} src={previewImage}
/> />
)} )}
</> </div>
); );
return ( return (