diff --git a/BTCPayServer/Controllers/AppsController.cs b/BTCPayServer/Controllers/AppsController.cs index f4b65e8c9..0d8e649d7 100644 --- a/BTCPayServer/Controllers/AppsController.cs +++ b/BTCPayServer/Controllers/AppsController.cs @@ -73,8 +73,6 @@ namespace BTCPayServer.Controllers return app.StoreName; case nameof(app.AppType): return app.AppType; - case nameof(app.ViewStyle): - return app.ViewStyle; default: return app.Id; } diff --git a/BTCPayServer/Views/Apps/ListApps.cshtml b/BTCPayServer/Views/Apps/ListApps.cshtml index 0b57d020b..94176ccb1 100644 --- a/BTCPayServer/Views/Apps/ListApps.cshtml +++ b/BTCPayServer/Views/Apps/ListApps.cshtml @@ -5,7 +5,6 @@ var storeNameSortOrder = (string)ViewData["StoreNameSortOrder"]; var appNameSortOrder = (string)ViewData["AppNameSortOrder"]; var appTypeSortOrder = (string)ViewData["AppTypeSortOrder"]; - var viewStyleSortOrder = (string)ViewData["ViewStyleSortOrder"]; var sortByDesc = "Sort by descending..."; var sortByAsc = "Sort by ascending..."; } @@ -69,18 +68,6 @@ -