To better track those restore operations you can run the following query on the Master database of the Azure SQL Database logical server to track the progress of all restores.
SELECT major_resource_id, percent_complete
FROM sys.dm_operation_status
WHERE operation LIKE '%DATABASE RESTORE%'
If you don't see any restore then no restore is in progress. If you don't see progress over time on the restores returned by the query, then create a support ticket. As you can see here, some customers report restore backups taking more than 72 hours to finish.
You can also take a look at the Activity Log.
Try to drop the databases those databases.
Remove-AzSqlInstanceDatabase -Name "Database01" -InstanceName "managedInstance1" -ResourceGroupName "ResourceGroup01" -Force