@using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Plugins.FixedFloat @using Microsoft.AspNetCore.Routing @inject FixedFloatService FixedFloatService @inject IScopeProvider ScopeProvider @{ var storeId = ScopeProvider.GetCurrentStoreId(); FixedFloatSettings settings = null; if (!string.IsNullOrEmpty(storeId)) { try { settings = await FixedFloatService.GetFixedFloatForStore(storeId); } catch (Exception) { } } } @if (!string.IsNullOrEmpty(storeId)) {