
Try to force delete the file using pnp powershell in your onedrive site:
#Parameter
$SiteURL = "https://tenant-my.sharepoint.com/personal/julie_tenant_onmicrosoft_com"
$UserName="******@tenant.onmicrosoft.com"
$Password= "xxxxxx"
$SecurePassword = ConvertTo-SecureString -String $Password -AsPlainText -Force
$Cred = New-Object -TypeName System.Management.Automation.PSCredential -argumentlist $UserName, $SecurePassword
#Connect to PnP Online
Connect-PnPOnline -Url $SiteURL -Credentials $Cred
Remove-PnPFile -ServerRelativeUrl /personal/julie_tenant_onmicrosoft_com/Documents/beauty1.jpg -Force
If the issue still exists, we suggest you contact your SharePoint administrator to manage the storage.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.