
You could run below PowerShell as administrator to delete Members group.
$AdminCenterURL = "https://tenant-admin.sharepoint.com/"
$SiteURL = "site collection URL"
Connect-SPOService -url $AdminCenterURL -Credential (Get-Credential)
Remove-SPOSiteGroup -Site "site collection URL" -Identity "group name"
If an Answer is helpful, please click "Accept Answer" and upvote it.
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.