Sep 16 2022 02:11 AM
Sep 16 2022 02:20 AM - edited Sep 16 2022 02:21 AM
Hi @karkyp
If you refresh the page, do you see the package deployed?
Instead of using classic App catalog, better to use the modern app catalog for better results.
Also, from the screenshot, all of your packages are checked-out. They should be checked-in and published to use the app.
Sep 16 2022 02:22 AM
Sep 16 2022 02:23 AM - edited Sep 16 2022 02:35 AM
Hi @karkyp
Can you check the browser console (F12 - Developer toolbar), if there is any error reported?
Also, on the blank page, right click and check the view source.
Sep 16 2022 02:34 AM
Sep 16 2022 03:07 AM
Hi @karkyp
Doesn't seems to be anything wrong.
May be you can remove each app one by one and try again. Don't forge to download the apps as a backup.
Sep 16 2022 03:22 AM
Sep 16 2022 03:33 AM
Hi @karkyp
You can use PnP PowerShell as follows:
$AppCatalogSiteURL = "Your app catalog site URL"
$AppName = "Name of your app"
Connect-PnPOnline -Url $AppCatalogSiteURL -Interactive
$App = Get-PnPApp -Scope Tenant | Where {$_.Title -eq $AppName}
#Remove an App from App Catalog Site
Remove-PnPApp -Identity $App.Id
If you don't remember your app names, use Get-PnPApp to list all apps first.
Sep 16 2022 03:38 AM