Upload provider

This commit is contained in:
2025-11-15 05:13:52 +05:30
parent 142b169108
commit 8ff8b9236e

View File

@@ -27,7 +27,6 @@ export default function Profile({ onBack }: ProfileProps) {
avatar: currentUser?.avatar || '',
});
const [avatarFile, setAvatarFile] = React.useState<File | null>(null);
const [uploadingAvatar, setUploadingAvatar] = React.useState(false);
const [success, setSuccess] = React.useState<string | null>(null);
const [saving, setSaving] = React.useState(false);